2019年5月9日

摘要: 1. list1 = [1,2,3,4,5] list1 = [ str(x) for x in list1 ] 2. list1 = [1,2,3,4,5] list1 = list(map(str,list1)) 阅读全文
posted @ 2019-05-09 11:33 泡面小网管 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: import itertools#排列list1 = list(itertools.permutations([1,2,3,4,5,6],2))# print(list1)print(len(list1))# list2 = itertools.permutations([1,2,3,4,5,6], 阅读全文
posted @ 2019-05-09 09:46 泡面小网管 阅读(187) 评论(0) 推荐(0) 编辑
摘要: list1 = [1,2,3,4,5,6,7,8,9,12,31,21,21]def fun1(num): if num % 2 == 0: return True return Falselist2 = filter(fun1,list1)print(list(list2))#filter函数中两 阅读全文
posted @ 2019-05-09 09:45 泡面小网管 阅读(283) 评论(0) 推荐(0) 编辑

导航