摘要: # 集合会自己去重 set1 = set([1, 2, 3, 4, 5, 1, 2]) set2 = set([4, 5, 6, 7, 8]) print(set1) # 查询 # 查询具体值只能通过for循环去遍历 print(1 in set1) # 判断是否在集合中 print(1 not i 阅读全文
posted @ 2024-08-22 16:43 GDquicksand 阅读(2) 评论(0) 推荐(0) 编辑