python并集是什么意思?
本文教程操作環境:windows7系統、Python3.9.1,DELLG3電腦。
以屬于A或屬于B的元素為元素的集合成為A與B的并集。
1、概念
并集就是取所有集合的所有元素,如果出現重復的保留一個。使用符號|或者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學習教程請關注IT培訓機構:千鋒教育。