在Python中,可以使用union()
方法或|
運算符對兩個或多個集合進行并集操作。以下是具體的示例:
# 定義兩個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
# 使用union()方法
result = set1.union(set2)
print("使用union()方法的結果:", result) # 輸出:{1, 2, 3, 4, 5, 6}
# 使用|運算符
result = set1 | set2
print("使用|運算符的結果:", result) # 輸出:{1, 2, 3, 4, 5, 6}
在這個例子中,我們首先定義了兩個集合set1
和set2
。然后,我們分別使用union()
方法和|
運算符對這兩個集合進行并集操作,并將結果存儲在變量result
中。最后,我們打印出結果。