python 怎么求交集
时间: 2024-05-08 14:20:55 浏览: 54
Python实现求两个csv文件交集的方法
Python中可以使用set()函数来求两个集合的交集,示例如下:
```python
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
intersection = set1.intersection(set2)
print(intersection) # 输出 {4, 5}
```
在上述示例中,我们创建了两个set对象set1和set2,然后使用intersection()方法求它们的交集,最后将结果输出。
阅读全文