摘要: def find_samenumber(list1,list2): A = set(list1).intersection(set(list2)) #交集 B = set(list1).union(set(list2)) # 并集 C = set(list1).difference(set(list 阅读全文
posted @ 2020-12-13 23:44 向前一步~ 阅读(2942) 评论(0) 推荐(0) 编辑