在Python中,可以使用以下方法來求兩個集合的并集:
|
運算符:可以通過將兩個集合用|
運算符連接起來,得到它們的并集。例如:set1 = {1, 2, 3}
set2 = {3, 4, 5}
union_set = set1 | set2
print(union_set) # 輸出:{1, 2, 3, 4, 5}
union()
方法:union()
方法可以將一個集合與另一個集合求并集。例如:set1 = {1, 2, 3}
set2 = {3, 4, 5}
union_set = set1.union(set2)
print(union_set) # 輸出:{1, 2, 3, 4, 5}
無論是使用|
運算符還是union()
方法,都能得到兩個集合的并集。