python合并两个列表,返回他们的并集,并去除重复
时间: 2023-07-13 21:07:38 浏览: 130
基于python求两个列表的并集.交集.差集
5星 · 资源好评率100%
可以使用 set() 函数将两个列表转换为集合,再将这两个集合合并即可得到他们的并集,并且由于集合的元素不重复,因此重复元素会被自动去除。最后将结果转换为列表即可。
示例代码如下:
```python
list1 = [1, 2, 3]
list2 = [2, 3, 4]
set1 = set(list1)
set2 = set(list2)
union_set = set1.union(set2)
result_list = list(union_set)
print(result_list)
```
输出结果为:
```
[1, 2, 3, 4]
```
阅读全文