python 集合

Posted ihitao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 集合相关的知识,希望对你有一定的参考价值。

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 集合的主要内容,如果未能解决你的问题,请参考以下文章

金蝶handler中 collection 代码片段理解

Alfred常见使用

比较 C# 中的字符串片段并从集合中删除项目

带有红宝石集合/可枚举的酷技巧和富有表现力的片段[关闭]

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段