阅读量:0
在Python中,set
是一个内置类型,可以用来存储不重复的元素。你可以使用set
函数来创建集合并执行集合运算,例如交集、并集和差集等。
下面是一些关于如何使用set
函数进行集合运算的示例:
- 创建集合:
# 使用set函数创建集合 set1 = set([1, 2, 3, 4]) set2 = set([3, 4, 5, 6]) # 或者使用大括号直接创建集合 set3 = {1, 2, 3, 4} set4 = {3, 4, 5, 6}
- 交集(Intersection):
# 使用&操作符计算交集 intersection = set1 & set2 # 或者使用intersection方法 intersection = set1.intersection(set2)
- 并集(Union):
# 使用|操作符计算并集 union = set1 | set2 # 或者使用union方法 union = set1.union(set2)
- 差集(Difference):
# 使用-操作符计算差集 difference = set1 - set2 # 或者使用difference方法 difference = set1.difference(set2)
- 对称差集(Symmetric Difference):
# 使用^操作符计算对称差集 sym_difference = set1 ^ set2 # 或者使用symmetric_difference方法 sym_difference = set1.symmetric_difference(set2)
通过这些基本的集合运算,你可以根据需要进行更复杂的集合操作。