溫馨提示×

python求并集的方法是什么

小億
289
2023-12-26 21:39:44
欄目: 編程語言

在Python中,可以使用以下方法來求兩個集合的并集:

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

無論是使用|運算符還是union()方法,都能得到兩個集合的并集。

0