标签:idt python2.7 date [1] tar targe 技术 htm add
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与列表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