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)