Day03 集合

集合 集合是一個無序的,不重複的數據組合、 1.創建集合 交集: set_1.intersection(set_2) 2.集合的關係 並集: list_1.union(list_2) 差集: list_1.difference(list_2) list_2.difference(list_1) 3.集合的添加 set_1.add(8) 在集合中添加一項 set_1.update([5,6,7])
相關文章
相關標籤/搜索