python-集合set
Posted benchdog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-集合set相关的知识,希望对你有一定的参考价值。
set:本身非可哈希,但set里面元素必须可哈希
非可哈希不能作为字典的键
set更新:
s.add(‘asdf‘)
s.update(‘asdf‘)
s.remove(‘a‘)
s.pop()#随机删除
s.clear()#清空s中元素,集合s还保留
del s#删除集合s,什么都不保留
a = set([1,2,3,4,5])
b = set([4,5,6,7,8])
a.intersection(b) #a和b的交集元素, a & b
a.union(b) #a和b的并集元素, a | b
a.difference(b)#差集 in a but not in b, a - b
a.symmetric_difference(b)#对称差集/反向交集 not in (a.intersection(b)), a ^ b
a.issuperset(b)
a.issubset(b)
以上是关于python-集合set的主要内容,如果未能解决你的问题,请参考以下文章
:Python的基本数据类型-第三节:Python中表示“无序”的数据类型
为整个应用设置 Python27 Google AppEngine 默认编码