是的,在Python中,set
數據結構可以進行并集操作。你可以使用union()
方法或者|
運算符來實現兩個集合的并集。
以下是使用union()
方法的示例:
set1 = {1, 2, 3}
set2 = {3, 4, 5}
result = set1.union(set2)
print(result) # 輸出:{1, 2, 3, 4, 5}
以下是使用|
運算符的示例:
set1 = {1, 2, 3}
set2 = {3, 4, 5}
result = set1 | set2
print(result) # 輸出:{1, 2, 3, 4, 5}
在這兩個示例中,我們首先創建了兩個集合set1
和set2
,然后使用union()
方法或|
運算符計算它們的并集,并將結果存儲在變量result
中。最后,我們打印出結果。