在Python中,要計(jì)算集合的并集可以使用union或者"|"符號(hào)。
# 使用union函數(shù) set1 = {1, 2, 3} set2 = {3, 4, 5} set3 = set1.union(set2) print(set3) # 輸出{1, 2, 3, 4, 5} # 使用"|"符號(hào) set4 = set1 | set2 print(set4) # 輸出{1, 2, 3, 4, 5}
可以看到,使用union函數(shù)和"|"符號(hào)的結(jié)果一樣,都是計(jì)算兩個(gè)集合的并集。
需要注意的是,集合的并集不會(huì)包含重復(fù)的元素。
set5 = {1, 2, 3} set6 = {3, 4, 5} set7 = {3, 4} set8 = set5.union(set6, set7) print(set8) # 輸出{1, 2, 3, 4, 5} set9 = {1, 2, 3} set10 = {3, 4, 5} set11 = {3, 4} set12 = set9 | set10 | set11 print(set12) # 輸出{1, 2, 3, 4, 5}
當(dāng)計(jì)算多個(gè)集合的并集時(shí),也可以使用union函數(shù)或者"|"符號(hào)。
總之,在Python中計(jì)算集合的并集非常方便,可以使用union函數(shù)或者"|"符號(hào)來完成。