1. 程式人生 > >python 集合 無序非重 容器的操作

python 集合 無序非重 容器的操作

blog sub 不存在 如果 一個 無序 容器 存在 所有

a=set([1,2,3])

b=set([1,2,4])

python 取兩個集合都存在元素的集合 c=a.intersection(b) c=a&b

測試是否a中的每個元素都存在b中 a.issubset(b) a<=b

返回一個集合包含a和b的所有元素 a.union(b) a|b

存在a但不存在b的元素 a.difference(b) a-b

a b中非重復的元素 a.symmetric_difference(b) a^b

如果5存在於a,則刪除。 a.discard(5)

python 集合 無序非重 容器的操作