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

python 集合

时间:2020-01-09 22:30:07      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:实现   迭代   clear   创建   int   python 集合   指定   python   rem   

集合:集合是无序可变的,元素不能重复,实际上,集合底层是字典实现,集合的所有元素都是字典中的"链对象",因此是不能重复且唯一的。

集合的创建和删除:

a  = {1,2,3,4}

a.add(5)

print(a)

使用set(),将列表,元组等迭代对象转成集合,如果原来的数据存在重复数据,则只保留一个。

a = (1,2,3,3)

a = set(a)

print(a)         

remove()删除指定元素;clear()清空整个集合

c = {1,2,3,4}

c.remove(1)

print(c)     

python 集合

标签:实现   迭代   clear   创建   int   python 集合   指定   python   rem   

原文地址:https://www.cnblogs.com/yingxiongguixing/p/12173508.html

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