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

python ---set

时间:2016-12-14 02:36:37      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:python   记录   元素 set   

python的set是一个无序不重复元素集,基本功能包括关系测试和消除重复元素. 集合对象还支持并、交、差、对称差等。

sets 支持 x in set、 len(set)、和 for x in set。作为一个无序的集合,sets不记录元素位置或者插入点。因此,sets不支持 indexing, slicing, 或其它类序列(sequence-like)的操作。

回到顶部

基本操作

技术分享

>>> x = set("jihite")
>>> y = set([‘d‘, ‘i‘, ‘m‘, ‘i‘, ‘t‘, ‘e‘])
>>> x       #把字符串转化为set,去重了set([‘i‘, ‘h‘, ‘j‘, ‘e‘, ‘t‘])
>>> y
set([‘i‘, ‘e‘, ‘m‘, ‘d‘, ‘t‘])
>>> x & y   #交set([‘i‘, ‘e‘, ‘t‘])
>>> x | y   #并set([‘e‘, ‘d‘, ‘i‘, ‘h‘, ‘j‘, ‘m‘, ‘t‘])
>>> x - y   #差set([‘h‘, ‘j‘])
>>> y - x
set([‘m‘, ‘d‘])
>>> x ^ y   #对称差:x和y的交集减去并集set([‘d‘, ‘h‘, ‘j‘, ‘m‘])

技术分享

回到顶部

函数操作

技术分享

>>> x
set([‘i‘, ‘h‘, ‘j‘, ‘e‘, ‘t‘])
>>> s = set("hi")
>>> s
set([‘i‘, ‘h‘])
>>> len(x)                    #长度5
>>> ‘i‘ in x
True
>>> s.issubset(x)             #s是否为x的子集True
>>> y
set([‘i‘, ‘e‘, ‘m‘, ‘d‘, ‘t‘])
>>> x.union(y)                #交set([‘e‘, ‘d‘, ‘i‘, ‘h‘, ‘j‘, ‘m‘, ‘t‘])
>>> x.intersection(y)         #并set([‘i‘, ‘e‘, ‘t‘])
>>> x.difference(y)           #差set([‘h‘, ‘j‘])
>>> x.symmetric_difference(y) #对称差set([‘d‘, ‘h‘, ‘j‘, ‘m‘])
>>> s.update(x)               #更新s,加上x中的元素>>> s
set([‘e‘, ‘t‘, ‘i‘, ‘h‘, ‘j‘])
>>> s.add(1)                  #增加元素>>> s
set([1, ‘e‘, ‘t‘, ‘i‘, ‘h‘, ‘j‘])
>>> s.remove(1)               #删除已有元素,如果没有会返回异常>>> s
set([‘e‘, ‘t‘, ‘i‘, ‘h‘, ‘j‘])
>>> s.remove(2)

Traceback (most recent call last):
  File "<pyshell#29>", line 1, in <module>
    s.remove(2)
KeyError: 2
>>> s.discard(2)               #如果存在元素,就删除;没有不报异常>>> s
set([‘e‘, ‘t‘, ‘i‘, ‘h‘, ‘j‘])
>>> s.clear()                  #清除set>>> s
set([])
>>> x
set([‘i‘, ‘h‘, ‘j‘, ‘e‘, ‘t‘])
>>> x.pop()                    #随机删除一元素‘i‘
>>> x
set([‘h‘, ‘j‘, ‘e‘, ‘t‘])
>>> x.pop()
‘h‘

技术分享


本文出自 “11043432” 博客,请务必保留此出处http://11053432.blog.51cto.com/11043432/1882434

python ---set

标签:python   记录   元素 set   

原文地址:http://11053432.blog.51cto.com/11043432/1882434

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