set在python里是什么意思
程序员文章站
2022-04-28 16:09:23
...
set在python里是什么意思?
set是一组数,无序,内容又不能重复,通过调用set()方法创建:
>>> s = set(['A', 'B', 'C'])
对于访问一个set的意义就仅仅在于查看某个元素是否在这个集合里面,注意大小写敏感:
>>> print 'A' in s True >>> print 'D' in s False
也通过for来遍历:
s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)]) for x in s: print x[0],':',x[1] >>> Lisa : 85 Adam : 95 Bart : 59
通过add和remove来添加、删除元素(保持不重复),添加元素时,用set的add()方法
>>> s = set([1, 2, 3]) >>> s.add(4) >>> print s set([1, 2, 3, 4])
如果添加的元素已经存在于set中,add()不会报错,但是不会加进去了:
>>> s = set([1, 2, 3]) >>> s.add(3) >>> print s set([1, 2, 3])
删除set中的元素时,用set的remove()方法:
>>> s = set([1, 2, 3, 4]) >>> s.remove(4) >>> print s set([1, 2, 3])
如果删除的元素不存在set中,remove()会报错:
>>> s = set([1, 2, 3]) >>> s.remove(4) Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError: 4
所以如果我们要判断一个元素是否在一些不同的条件内符合,用set是最好的选择,下面例子:
months = set(['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec',]) x1 = 'Feb' x2 = 'Sun' if x1 in months: print 'x1: ok' else: print 'x1: error' if x2 in months: print 'x2: ok' else: print 'x2: error' >>> x1: ok x2: error
另外,set的计算效率比list高.
相关推荐:《Python教程》
以上就是set在python里是什么意思的详细内容,更多请关注其它相关文章!
推荐阅读
-
marginbottom在安卓中是什么意思(子元素marginBottom使用方法)
-
河北省唯一的985是什么意思?河北唯一的211大学为什么在天津?
-
python爬虫是什么意思(简单好玩的编程代码)
-
append函数是什么意思(python入门详细教程)
-
append函数是什么意思(python入门详细教程)
-
python爬虫是什么意思(简单好玩的编程代码)
-
marginbottom在安卓中是什么意思(子元素marginBottom使用方法)
-
西工大是什么级别的大学?在985里算什么水平?附西北工业大学华为鸿蒙班招生要求
-
已投挡是什么意思是已被录取吗?高考志愿投档后院校在阅什么意思?
-
河北省唯一的985是什么意思?河北唯一的211大学为什么在天津?