码迷,mamicode.com
首页 > 其他好文 > 详细

数据类型——集合

时间:2018-06-11 23:34:08      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:drive   sub   交集   删除   cal   必须   upd   ace   删除元素   

数据类型——集合

集合的三个特性

  • 确定性(元素必须可hash)
  • 互异性 (去重)
  • 无序性(集合中的元素是无序的),如集合{3,4,5}与集合{3,5,4}算同一个集合

1.创建集合

>>> s= {1,2,3,4,5,2}
>>> s
{1, 2, 3, 4, 5} #自动去重
>>> s.add(9) #添加内容
>>> s
{1, 2, 3, 4, 5, 9} # 9添加进来了
>>> s.add(2) #添加一个已经存在的2,添加会失败
>>> s
{1, 2, 3, 4, 5, 9}

2. 增加、删除集合元素

>>> s
{1, 2}
>>> s.add(3) # 通过add添加
>>> s
{1, 2, 3}
>>> s = {1,2,3,4,5,66,77}
>>> s
{1, 2, 3, 4, 5, 66, 77}
>>> s.update([1,2,3,6,88,99]) # update
>>> s
{1, 2, 3, 4, 5, 66, 6, 99, 77, 88} # 把没有的元素都加进去了

集合只能添加不可变数据

>>> s
{1, 2}
>>> s.add([1,2,3])  #集合只能添加不可变数据
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: ‘list‘

copy

>>> s
{1, 2}
>>> s1 = s.copy() #copy
>>> s1
{1, 2}

删除元素

>>> s
{1, 2, 3, 4, 5, 66, 6, 99, 77, 88}
>>> s.discard(1) #删除元素,删除不存在的元素也不会报错
>>> s = {1,2,3}
>>> s.pop()  #随便删除一个元素, 集合为空会报错
1
>>> s
{2, 3}
>>> s = {1,2,3}
>>> s.clear() #清空
>>> s
set()

3.集合关系测试

交集

iphone7 = {‘alex‘, ‘rain‘, ‘jack‘, ‘old_driver‘}
iphone8 = {‘alex‘, ‘jack‘, ‘shanshan‘, ‘old_boy‘}
#交集
print(iphone7.intersection(iphone8)) #{‘jack‘, ‘alex‘}
print(iphone7 & iphone8) # {‘jack‘, ‘alex‘}

差集

iphone7 = {‘alex‘, ‘rain‘, ‘jack‘, ‘old_driver‘}
iphone8 = {‘alex‘, ‘jack‘, ‘shanshan‘, ‘old_boy‘}
print(iphone7.difference(iphone8)) #{‘old_driver‘, ‘rain‘}
print(iphone7 - iphone8) #{‘old_driver‘, ‘rain‘}

print(iphone8.difference(iphone7)) #{‘shanshan‘, ‘old_boy‘}
print(iphone8 - iphone7) #{‘shanshan‘, ‘old_boy‘}

并集

iphone7 = {‘alex‘, ‘rain‘, ‘jack‘, ‘old_driver‘}
iphone8 = {‘alex‘, ‘jack‘, ‘shanshan‘, ‘old_boy‘}
print(iphone7.union(iphone8)) #{‘rain‘, ‘old_boy‘, ‘jack‘, ‘alex‘, ‘old_driver‘, ‘shanshan‘}
print(iphone7 | iphone8) #{‘rain‘, ‘old_boy‘, ‘jack‘, ‘alex‘, ‘old_driver‘, ‘shanshan‘}

对称差集

只买了iPhone7或 iPhone8的人

iphone7 = {‘alex‘, ‘rain‘, ‘jack‘, ‘old_driver‘}
iphone8 = {‘alex‘, ‘jack‘, ‘shanshan‘, ‘old_boy‘}
print(iphone8.symmetric_difference(iphone7)) #{‘old_driver‘, ‘old_boy‘, ‘rain‘, ‘shanshan‘}
print(iphone8 ^ iphone7) #{‘old_driver‘, ‘old_boy‘, ‘rain‘, ‘shanshan‘} 

包含关系

  • in,not in:判断元素是否在集合内,== ,!=判断两个集合是否相等
>>> a
{1, 2, 3}
>>> 1 in a
True
  • 两个集合之间一般有三种关系,相交、不相交、包含。分别用如下方法判断:

set.isdisjoint(s): 判断两个集合是不是不相交

set.issuperset(s) : 判断集合是不是包含其他集合,等同于 a>=b

set.issubset(s) :判断集合是不是被其他集合包含,等同于 a<=b

数据类型——集合

标签:drive   sub   交集   删除   cal   必须   upd   ace   删除元素   

原文地址:https://www.cnblogs.com/friday69/p/9170427.html

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