Python中的set(集合)是一種無序且不重復的數據結構。可以使用set()函數或花括號{}創建一個集合。
my_set = set()
my_set = {1, 2, 3, 4, 5}
my_set.add(6)
my_set.remove(3)
value = 4
if value in my_set:
print("集合中包含該元素")
else:
print("集合中不包含該元素")
for item in my_set:
print(item)
my_set = {x for x in range(10) if x % 2 == 0}
注意:集合是無序的,因此無法通過索引訪問集合中的元素。如果需要按照特定順序處理集合中的元素,可以將集合轉換為列表或使用sorted()函數進行排序。