python3 集合的基本操作
程序员文章站
2024-02-23 20:53:10
...
集合、是字典的表亲
{}并不是字典的特权
集合的特点:
1 具有唯一性
2 不支持索引
3 与字典相同,也是无序的
0 创建方法
num1 = {1,2,3,4}
num2 = set([‘q’,’w’,’e’,’r’])
print(num1,num2)
num3 = [1,2,3,4,2,4,2,1]
temp = num3.copy()
temp = set(temp)
print(temp)
BIF内置函数
1、add() 添加元素
temp.add(5)
2、remove() #删除元素
temp.remove(1)
3、frozenset() 不可变集合,用法和set()相同
num4 = frozenset(temp) #不可以对frozenset进行修改
更多集合的内置函数见下图: