您好,登錄后才能下訂單哦!
在Python編程中,set()
函數用于創建一個集合對象。集合是一個無序的、不重復的元素序列。以下是一些常見的使用set()
函數進行集合操作的示例:
# 使用花括號創建集合
my_set = {1, 2, 3, 4, 5}
# 使用set()函數創建集合
another_set = set([1, 2, 3, 4, 5])
my_set.add(6)
print(my_set) # 輸出:{1, 2, 3, 4, 5, 6}
my_set.remove(6)
print(my_set) # 輸出:{1, 2, 3, 4, 5}
print(3 in my_set) # 輸出:True
print(7 in my_set) # 輸出:False
print(len(my_set)) # 輸出:5
# 并集
union_set = my_set.union({4, 5, 6})
print(union_set) # 輸出:{1, 2, 3, 4, 5, 6}
# 交集
intersection_set = my_set.intersection({4, 5, 6})
print(intersection_set) # 輸出:{4, 5}
# 對稱差集
symmetric_difference_set = my_set.symmetric_difference({4, 5, 6})
print(symmetric_difference_set) # 輸出:{1, 2, 3, 6}
# 子集
subset_set = my_set.issubset({4, 5, 6})
print(subset_set) # 輸出:False
# 超集
superset_set = {4, 5, 6}.issuperset(my_set)
print(superset_set) # 輸出:True
通過這些示例,你可以優雅地使用set()
函數進行集合操作。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。