1、集合天生去重
2、集合:只有元素,不是key、values模式 eg:{1,2,3,4,5}
eg: l={1,1,3,2,3,5,5} print(set(l)) 结果:{1, 2, 3, 5}
3、交集(&、intersection)
l={1,1,3,2,3,5,5}l2={2,3,4,5,6,7}print(l.intersection(l2))
4、并集(|、union)
print(l.union(l2))
5、差集
l={1,1,3,2,3,5,5}l2={2,3,4,5,6,7}print(l-l2) 结果:{1} l中的元素在l2中没有出现元素就是差集
6、增加add
7、删除remove
转载于:https://www.cnblogs.com/fandonghua/p/11586598.html