python set.intersection()
时间: 2023-11-17 21:56:59 浏览: 230
两个数组的交集(python+set)1
`set.intersection()` 是 Python 中用于求两个集合的交集的方法。它返回一个新的集合,其中包含两个集合中都存在的元素。
例如,假设有两个集合 `set1` 和 `set2`:
```
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
```
我们可以使用 `set.intersection()` 方法来求它们的交集:
```
intersection_set = set1.intersection(set2)
print(intersection_set)
```
输出结果为:
```
{3, 4}
```
这是因为 `set1` 和 `set2` 中都存在元素 `3` 和 `4`。
阅读全文