python并集是什么意思?
本文教程操作環(huán)境:windows7系統(tǒng)、Python3.9.1,DELLG3電腦。
以屬于A或?qū)儆贐的元素為元素的集合成為A與B的并集。
1、概念
并集就是取所有集合的所有元素,如果出現(xiàn)重復(fù)的保留一個。使用符號|或者union方法完成。
2、實例
my_set1={"apple","orange","pear","banana","food"}
my_set2={"apple","orange","pear"}
both=my_set1|my_set2
print(both)
使用union完成。
my_set1={"apple","orange","pear","banana","food"}
my_set2={"apple","orange","pear"}
both=my_set1.union(my_set2)
print(both)
以上就是Python對稱差集的介紹,希望能對大家有所幫助。更多Python學(xué)習(xí)教程請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。