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

Python 集合set()添加删除、交集、并集、集合操作详解

时间:2018-12-25 11:24:41      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:idt   python2.7   date   [1]   tar   targe   技术   htm   add   

  • 创建集合set

python set类是在python的sets模块中,大家现在使用的python2.7.x中,不需要导入sets模块可以直接创建集合。

set(‘boy‘)
Out[1]: {‘b‘, ‘o‘, ‘y‘}
  • 集合添加和删除

python 集合的添加有两种常用方法,分别是add和update。
集合add方法:是把要传入的元素做为一个整个添加到集合中,例如:

set(‘boy‘)
Out[1]: {‘b‘, ‘o‘, ‘y‘}

a = set(‘boy‘)

a.add(‘python‘)

a
Out[4]: {‘b‘, ‘o‘, ‘python‘, ‘y‘}

集合update方法:是把要传入的元素拆分,做为个体传入到集合中,例如:

a = set(‘boy‘)

a.update(‘python‘)

a
Out[7]: {‘b‘, ‘h‘, ‘n‘, ‘o‘, ‘p‘, ‘t‘, ‘y‘}

集合删除操作方法:remove

a=set([‘y‘, ‘python‘, ‘b‘, ‘o‘])

a.remove(‘python‘)

a
Out[16]: {‘b‘, ‘o‘, ‘y‘}
  • python set() 集合操作符号、数学符号

集合的交集、合集(并集)、差集,了解python集合set与列表list的这些非常好用的功能前,要先了解一些集合操作符号

技术分享图片

a = set(‘abc‘)
b = set(‘cdef‘)

#交集
a&b
Out[20]: {‘c‘}

#并集
a|b
Out[22]: {‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘}

#相对补集,差集
a - b
Out[24]: {‘a‘, ‘b‘}

转载:http://www.iplaypy.com/jichu/set.html

Python 集合set()添加删除、交集、并集、集合操作详解

标签:idt   python2.7   date   [1]   tar   targe   技术   htm   add   

原文地址:https://www.cnblogs.com/Christina-Notebook/p/10172467.html

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