Python计算交集并集
时间: 2024-04-20 15:21:01 浏览: 105
帮助计算并交交集的python脚本
在Python中,可以使用集合(set)来计算交集和并集。集合是一种无序且不重复的数据结构。
要计算两个集合的交集,可以使用intersection()方法或者使用&运算符。例如:
```python
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
# 使用intersection()方法计算交集
intersection_set = set1.intersection(set2)
print(intersection_set) # 输出: {3, 4}
# 使用&运算符计算交集
intersection_set = set1 & set2
print(intersection_set) # 输出: {3, 4}
```
要计算两个集合的并集,可以使用union()方法或者使用|运算符。例如:
```python
set1 = {1, 2, 3}
set2 = {3, 4, 5}
# 使用union()方法计算并集
union_set = set1.union(set2)
print(union_set) # 输出: {1, 2, 3, 4, 5}
# 使用|运算符计算并集
union_set = set1 | set2
print(union_set) # 输出: {1, 2, 3, 4, 5}
```
阅读全文