a = set([1,2,3,4])
b = set([3,4,5,6])
print(a.intersection(b)) # 交集 {3, 4}
print(a.union(b)) # 并集 {1, 2, 3, 4, 5, 6}
print(a.difference(b)) # 差集 in a but not in b {1, 2}
print(b.difference(a)) # 差集 in b but not in a {5, 6}
print(a.symmetric_difference(b)) # 对称 差集 {1, 2, 5, 6}
python 集合
Posted ihitao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 集合相关的知识,希望对你有一定的参考价值。
以上是关于python 集合的主要内容,如果未能解决你的问题,请参考以下文章