1 #author:leon 2 product_list= [ 3 ('iphone',5800), 4 ('mac pro',9800), 5 ('bike',800), 6 ('watch',6000), 7 ('coffee',31), 8 ('book',120) 9 ] 10 shopp... ...
分类:
其他好文 时间:
2018-02-09 15:23:43
阅读次数:
164
作者:Leon链接:https://www.zhihu.com/question/20691338/answer/102249162来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 我看到有人在问,Andrew Ng的视频,还有代码这些的资料。再次整理一下: 1、机器学 ...
分类:
其他好文 时间:
2018-02-06 20:20:41
阅读次数:
165
1 #author:leon 2 #"hello world!" 3 4 for i in range(10): #循环十次,每一次循环赋一个0-9中的数字给i 。 5 print("-------",i) 1 for i in range(2,8,2): #循环八次,从2-8,间隔(步幅)为2 。... ...
分类:
其他好文 时间:
2018-02-03 17:46:58
阅读次数:
120
# -*- coding:utf-8 -*-
# Auther:Leon
import getpass
user=input("请输入账号:")
pwd=getpass.getpass("请输入密码:")
if user == "leon" an
分类:
其他好文 时间:
2017-12-21 12:01:13
阅读次数:
124
1、连接mysql 下载mysql,到官网下载。一路安装,设置好帐号密码。 下载mysql的编译环境,Navicat; 在Navicat创建数据库和表; python链接mysql, 安装库,pip install mysqlclient。 用pyrhon在mysql中创建的数据库leon中的url ...
分类:
数据库 时间:
2017-10-05 19:09:25
阅读次数:
192
# Author:leon production_list = [ ('iphone',5800), ('mac pro', 9800), ('bike', 800), ('watch', 10600), ('coffee', 31), ('alex python', 120) ] shopping... ...
分类:
编程语言 时间:
2017-09-18 13:29:06
阅读次数:
236
作者:Leon链接:https://www.zhihu.com/question/20691338/answer/102249162来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 数 学 很多人翻看任何一本机器学习的书,看到一推的数学公式就开始打退堂鼓了。开始搜索,提 ...
分类:
其他好文 时间:
2017-09-12 11:13:24
阅读次数:
225
#Author:leon product_list = [ ('huawei',5000), ('xiaomi',4000), ('oppo',3000), ('leshi',2000), ] shopping_list = [] #一个空的列表 salary = input('input your... ...
分类:
其他好文 时间:
2017-08-04 12:46:58
阅读次数:
162
Wumpus Time Limit: 2 Seconds Memory Limit: 65536 KB One day Leon finds a very classic game called Wumpus.The game is as follow. Once an agent fell int ...
分类:
其他好文 时间:
2017-07-26 10:45:24
阅读次数:
175
lwIP RAW TCP/IP接口 作者: Adam Dunkels, Leon Woestenberg, Christiaan Simons lwIP为使用TCP/IP协议通信的应用程序编程提供了两种接口接口(APIs): * 低层次的称之为"core" / "callback" 或者 "raw" ...