摘要: '''-a append ,但是不能读-r read only-w write 会覆盖创建''' #data = open("bigger",encoding="UTF-8").read()f = open("bigger",'a',encoding="UTF-8") #文件句柄,就是文件的内存对象data = f.read()data2 = f.read() #这个时候的赋值已经读到文件... 阅读全文
posted @ 2018-05-05 10:41 ywyin 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1)去重 2)关系测试 list_1 =[1,4,3,7,5,7,9] list_1 = set(list_1) print(list_1,type(list_1)) list_2 = set([22,55,0,9,7,22]) print(list_1,list_2) print(list_1.i 阅读全文
posted @ 2018-05-04 20:20 ywyin 阅读(93) 评论(0) 推荐(0) 编辑
摘要: http://www.runoob.com/python/python-while-loop.html https://docs.python.org/3/whatsnew/3.6.html 阅读全文
posted @ 2018-05-04 13:14 ywyin 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #define product listproduct_list = [ ('Python book',45), ('iphone',5800), ('iwatch', 1500), ("bike",850), ("luckiin coffee",25)]_shop =[]#input custom 阅读全文
posted @ 2018-05-04 11:06 ywyin 阅读(297) 评论(0) 推荐(0) 编辑
摘要: name = 'His name is Louie' print(name.captitalize()) #首字母大写 print(name.count("i")) #i的数量 print(name.ceter(50,“-”) # 打印50个- print(name.endswith("ie") # 阅读全文
posted @ 2018-05-03 23:18 ywyin 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 字典 # key-value type info = { ‘stu1101’: "Teng", 'stu1102': "Long", } print(info) # dict是无序的,key必须唯一,天生去重 print(info["stu1101"]) #查询 print(info.get("st 阅读全文
posted @ 2018-05-03 22:01 ywyin 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1)三元运算 a,b,c = 2,3,4 d = a if a>b else c 2)进制 二进制,01 八进制,01234567 十进制,0123456789 十六进制,0123456789ABCDEF 二进制到16进制转换 http://jingyan.baidu.com/album/47a29 阅读全文
posted @ 2018-05-03 17:36 ywyin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: type() 1)Number int long float complex 2)String(字符串) str()取值函数 3)List(列表) List =['apple', 'alligator', 'gibbon', 'salamander'] / print (list[2:]) 4)Tu 阅读全文
posted @ 2018-05-03 14:30 ywyin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: get_pass 导入标准库,ilb目录下 三方库需要安装才能使用,一般安装在site package Sample .py文件都可以作为外部文件导入, 1)copy 到lib/site-packages下面作为默认路径 2)但是要有绝对路径,修改环境变量 阅读全文
posted @ 2018-05-03 11:05 ywyin 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1)朋友推荐了vscode,最后还是安装了PYcharm professional 2018.2.1版本 2)B站上Python的教学视频看了15讲。。。https://www.bilibili.com/video/av17118368/?p=11 3)逻辑IF、While、For,注意:使用方法 阅读全文
posted @ 2018-05-02 21:23 ywyin 阅读(115) 评论(0) 推荐(0) 编辑