在Python中,可以使用union()
方法或者|
運算符來實現set的并集操作。
示例:
# 定義兩個set
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
# 使用union()方法
result1 = set1.union(set2)
print(result1) # 輸出:{1, 2, 3, 4, 5, 6}
# 使用|運算符
result2 = set1 | set2
print(result2) # 輸出:{1, 2, 3, 4, 5, 6}