在Python中,可以使用union()方法或者|操作符來合并兩個集合。
示例代碼:
set1 = {1, 2, 3}
set2 = {3, 4, 5}
# 使用union()方法合并兩個集合
merged_set = set1.union(set2)
print(merged_set) # 輸出{1, 2, 3, 4, 5}
# 使用|操作符合并兩個集合
merged_set = set1 | set2
print(merged_set) # 輸出{1, 2, 3, 4, 5}
以上代碼中,我們首先定義了兩個集合set1和set2,然后使用union()方法和|操作符將兩個集合合并成一個新的集合merged_set。