摘要:
#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... 阅读全文
摘要:
#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: ... 阅读全文
摘要:
#读 #写文件 #追加 阅读全文