python 集合(set)
2024-04-29 00:03:47

python 集合(set)

去重:值是集合唯一的,不会重复。集合可以用来去重


python 集合(set)

无序


python 集合(set)

添加:add

添加多个:update

删除 :remove

清空:clear


python 集合(set)



交集


python 集合(set)


python 集合(set)


并集


python 集合(set)


python 集合(set)


差集(a有,b没有的集合)


python 集合(set)


对称差集(a/b都没有的)


python 集合(set)

(作者:汽车配件)