小码哥的IT人生

Python 集合 union() 方法

Python基础 2022-06-06 16:13:49小码哥的IT人生shichen

Python 集合 union() 方法

实例

返回包含两个集合中所有项目的集合,重复项被排除在外:

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.union(y)
print(z)

完整实例:

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.union(y)
print(z)

定义和用法

union() 方法返回一个集合,其中包含原始集合中的所有项目以及指定集合中的所有项目。

您可以指定任意数量的集合,以逗号分隔。

如果一项存在于多个集合中,则该项在结果中仅出现一次。

语法

set.union(set1, set2 ...)

参数值

参数 描述
set1 必需。要整合的集合。
set2

可选。要整合的另一集合。

您能够比较任意多的集合。

集合由逗号分隔。

更多实例

示例代码:

整合两个以上的集合:

x = {"a", "b", "c"}
y = {"f", "d", "a"}
z = {"c", "d", "e"}
result = x.union(y, z)
print(result)

完整实例:

x = {"a", "b", "c"}
y = {"f", "d", "a"}
z = {"c", "d", "e"}
result = x.union(y, z)
print(result)

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024