Python集合的简单操作。
Posted 区块链散户一枚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python集合的简单操作。相关的知识,希望对你有一定的参考价值。
# -*- coding: utf8 -*- set1 = set(‘abcd‘) set2 = set(‘cdef‘) print(set1 - set2) # 差集 set1相对与set2 多什么 print(set2 - set1) print(set1 | set2) # 并集,两个集合合并,相同的去重提取出一个集合 print(set1 & set2) # 交集,两个集合相同的元素提取出一个集合 print(set1 ^ set2) # 异或,两个集合中元素是单一的提取出一个集合
{‘a‘, ‘b‘} {‘e‘, ‘f‘} {‘b‘, ‘e‘, ‘f‘, ‘a‘, ‘c‘, ‘d‘} {‘c‘, ‘d‘} {‘b‘, ‘e‘, ‘f‘, ‘a‘}
以上是关于Python集合的简单操作。的主要内容,如果未能解决你的问题,请参考以下文章