python .union
时间: 2023-11-09 07:01:10 浏览: 185
Python.pdf
我不太明白你的问题是什么,"python .union" 不是一个完整的问题。请问你想了解什么关于 Python 中的集合(set)的操作?
如果是的话,那么 ".union" 是 set 类型的一个方法,用于返回两个集合的并集。
例如:
```
set1 = {1, 2, 3}
set2 = {2, 3, 4}
set3 = set1.union(set2)
print(set3) # 输出 {1, 2, 3, 4}
```
阅读全文