码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-12-14 03:22:37      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:测试   python   操作   容器   集合   class   intersect   set   inter   

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 集合 无序非重 容器的操作

标签:测试   python   操作   容器   集合   class   intersect   set   inter   

原文地址:http://www.cnblogs.com/koujiaodahan/p/8035469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!