两个数组不重复交集python
时间: 2023-10-30 15:07:30 浏览: 73
python获得两个数组交集、并集、差集的方法
5星 · 资源好评率100%
可以使用set的交集操作来实现两个数组的不重复交集,代码如下:
```python
a = [1, 2, 3, 4, 5]
b = [2, 4, 6, 8, 10]
set_a = set(a)
set_b = set(b)
intersection = set_a.intersection(set_b)
print(list(intersection))
```
输出为 `[2, 4]`,即两个数组的不重复交集。
阅读全文