摘要:
# 老师的方法,老师善用字典,添加增加 get 方法 遍历 推导式 dic = { i[0]:i for i in d}#{'a': 'a,1', 'b': 'b,3,22', 'c': 'c,3,4', 'f': 'f,5'} l = [] for em in b: #遍历好 if dic.get 阅读全文
摘要:
总结: datetime from datetime import datetime,timedelta#从XX导入 建议 # import datetime.datetime print(datetime.now())#2019-03-20 11:36:03.263924(毫秒) #时间对象(类似 阅读全文
摘要:
print(list(map(func, lambda x : x)) print(list(filter lambda x : x > len(x))) print(zip(l1,l2,tu)[2:]) print(fileter lambda x,y : len(x)> 3 and y>2 ) 阅读全文