摘要: in the foo3.0 check filein the foo3.0 阅读全文
posted @ 2018-10-31 00:18 986428528 阅读(91) 评论(0) 推荐(0)
摘要: 1 2(3, 4, 5)18{'c': 4, 'd': 5} 5{'x': 5}{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <_frozen_importlib_external.Sourc 阅读全文
posted @ 2018-10-30 17:30 986428528 阅读(335) 评论(0) 推荐(0)
摘要: 1、可变:值变,id不变。可变==不可hash 2、不可变:值变,id就变。不可变==可hash 可变:列表,字典,集合 不可变:数字,字符串,元祖 注意点: 集合内部元素要不可变 [ ]内可以有多个任意类型的值,逗号分隔 字典的key不可变 {'name': 'egon', 'age': 18, 阅读全文
posted @ 2018-10-29 19:23 986428528 阅读(378) 评论(0) 推荐(0)
摘要: data={'hello': 2, 'alex': 2, 'say': 1, 'sb': 2} data.clear() #data={} print(data)del data['hello'] #删除itemdel data #全部删除,字典不存在 data.pop('hello') data.setdefault("name",8) 不存在则添加 print(data) data2... 阅读全文
posted @ 2018-10-29 18:32 986428528 阅读(115) 评论(0) 推荐(0)
摘要: 6039752 [1, 2, 3, 1]6039752 [1, 2, 3, 1, 7] #列表增加新值后,id值并没有变化5162352 (1, 2, 3, 4) #元祖没有append方法,实现添加等于另外创建一个元祖,id值会变化 阅读全文
posted @ 2018-10-29 14:09 986428528 阅读(417) 评论(0) 推荐(0)
摘要: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']c['b', 'c', 'd', 'e', 'f']['b', 'd', 'f']['f', 'e', 'd', 'c', 阅读全文
posted @ 2018-10-29 13:32 986428528 阅读(99) 评论(0) 推荐(0)
摘要: -11 阅读全文
posted @ 2018-10-29 13:20 986428528 阅读(98) 评论(0) 推荐(0)
摘要: miao hello world miao miao #全部替换miao hello world wesley wesleymiao hello world miao wesley #count,找到3个,根据count只替换前两个 阅读全文
posted @ 2018-10-29 13:12 986428528 阅读(124) 评论(0) 推荐(0)
摘要: h*e*l*l*phe*she*name #每个可以迭代的对象一个一个用指定的字符连接起来 阅读全文
posted @ 2018-10-29 13:06 986428528 阅读(107) 评论(0) 推荐(0)
摘要: ['root', 'x', '0:0::/root:/bin/bash']['C:', 'a/b/c/d.txt']['a|b', 'c'] 阅读全文
posted @ 2018-10-29 12:56 986428528 阅读(90) 评论(0) 推荐(0)