set()函數用于創建一個集合,集合是一個無序且不重復的元素集合。可以使用|
操作符或union()
方法來計算兩個集合的并集。
下面是一個示例代碼:
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
# 使用|操作符計算并集
union_set = set1 | set2
print(union_set)
# 使用union()方法計算并集
union_set = set1.union(set2)
print(union_set)
輸出結果為:
{1, 2, 3, 4, 5, 6, 7, 8}
{1, 2, 3, 4, 5, 6, 7, 8}