网络知识 娱乐 python 集合(set)

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)