上一页 1 ··· 7 8 9 10 11
摘要: #max,min,zip people1={ 'age1':123,'age2':56,'age3':554,'age4':67,'age5':234,'age6':34,'age7':45 } #取出key值可以知道对应值 用zip print(list(max(zip(people1.values(),people1.keys())))) print(list(zip(people1... 阅读全文
posted @ 2018-09-09 11:19 lujiacheng-python 阅读(141) 评论(0) 推荐(0) 编辑
摘要: #map(方法(一般用lambda表达式,也可以是自定义的方法),可迭代对象(可以用for循环遍历))用list取出 #处理序列中的每个元素,得到的结果是一个列表,该列表元素个数及位置与原来一样 num=[1,2,34,223,1,3] def c(d): return d**2 def text(list,h): tet=[] for e in list: ... 阅读全文
posted @ 2018-09-09 11:14 lujiacheng-python 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #读 #写文件 #追加 阅读全文
posted @ 2018-09-09 11:01 lujiacheng-python 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python 可声明liunx所使用的python解释器(特有) 编码 #-*- coding:utf-8 -*- python2有中文时要加的编码 在头文件加 ,Python3不用使用,默认为utf-8(也可写成utf8) python种类 jpython cpyth 阅读全文
posted @ 2018-09-04 23:17 lujiacheng-python 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11