Python是一種強大的編程語言,它廣泛應用于數據處理和科學計算。在計算集合并集時,Python提供了許多有用的函數和工具。
# 定義兩個集合 set1 = {1, 2, 3, 4, 5} set2 = {4, 5, 6, 7, 8} # 使用 union() 函數計算并集 union_set = set1.union(set2) # 打印結果 print(union_set)
在這段代碼中,我們首先定義了兩個集合 set1 和 set2。然后,我們使用 union() 函數計算它們的并集,并將結果存儲到變量 union_set 中。最后,我們使用 print() 函數將結果打印出來。 此時,我們會得到輸出為 {1, 2, 3, 4, 5, 6, 7, 8},其中包含了兩個集合中的所有元素。
除了使用 union() 函數,Python 還提供了其他方法來計算兩個集合的并集。例如,我們可以使用“|”運算符將兩個集合合并:
# 使用“|”運算符計算并集 union_set = set1 | set2 # 打印結果 print(union_set)
與 union() 函數的結果相同,這段代碼使用“|”運算符計算 set1 和 set2 的并集,并將結果存儲到 union_set 中。
無論你使用哪種方法,Python 都提供了簡單而強大的工具來計算兩個集合的并集。