python之集合
Posted 贺言
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之集合相关的知识,希望对你有一定的参考价值。
1.集合:由不同元素组合而成(去重),呈无序状态,集合中元素为不可变类型(字符串,数字,元组)
定义:s={ , , , ,}
2.s=set([‘hello‘,‘world‘,‘english‘,‘world‘])
print(s) //输出结果为{‘world‘, ‘english‘, ‘hello‘}
3.s={‘hello‘,‘world‘,‘english‘,‘world‘}
s.add(3)
print(s) //输出结果为{‘world‘, ‘hello‘, 3, ‘english‘}
4.s={‘hello‘,‘world‘,‘english‘,‘world‘}
s.clear()
print(s) //输出结果为set()
5.s={‘hello‘,‘world‘,‘english‘,‘world‘}
s1=s.copy()
print(s1) //输出结果为{‘hello‘, ‘english‘, ‘world‘},复制
s.pop()
print(s) //输出结果为{‘world‘, ‘english‘},随机删
#s.remove(‘world‘),代表指定删除某个元素
6.s={‘hello‘,‘world‘,‘english‘,‘world‘}
s.discard(‘nb‘)
print(s) //输出结果为{‘world‘, ‘english‘, ‘hello‘},删除的指定元素不存在不会报错
以上是关于python之集合的主要内容,如果未能解决你的问题,请参考以下文章