python 集合 无序非重 容器的操作
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)
本文来自博客园,作者:BioinformaticsMaster,转载请注明原文链接:https://www.cnblogs.com/koujiaodahan/p/8035469.html
posted on 2017-12-13 23:23 BioinformaticsMaster 阅读(517) 评论(0) 编辑 收藏 举报