标签:实现 迭代 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)
标签:实现 迭代 clear 创建 int python 集合 指定 python rem
原文地址:https://www.cnblogs.com/yingxiongguixing/p/12173508.html