在Python中,集合(Set)是一種無序且不重復的數據結構,用于存儲多個元素。集合使用大括號{}來表示,元素之間用逗號分隔。可以通過以下方式來創建一個集合:
# 創建一個空集合
my_set = set()
# 創建一個帶有元素的集合
my_set = {1, 2, 3, 4, 5}
集合具有以下特點:
集合可以進行如下操作:
# 創建集合
set1 = {1, 2, 3}
set2 = {3, 4, 5}
# 集合運算
# 并集
union_set = set1.union(set2)
print(union_set) # {1, 2, 3, 4, 5}
# 交集
intersection_set = set1.intersection(set2)
print(intersection_set) # {3}
# 差集
difference_set = set1.difference(set2)
print(difference_set) # {1, 2}
通過集合的特點和方法,可以方便地實現集合操作,如去重、判斷元素是否存在等。