Python 中的 union()
函数 是 Set 数据类型的一个方法,它返回一个新集合,其中包含原始集合中存在的所有元素以及一个或多个其他集合中的元素。它对集合执行并集操作,结果是一个集合,其中包含原始集合和另一个集合(或多个集合)中的所有唯一元素。
参数值
此函数不接受任何参数。返回值
Python 中的 union()
方法可以返回一个包含所有不同元素的新集合。
如何在 Python 中使用 union()
示例 1
union()
方法返回一个新集合,其中包含原始集合和另一个集合中的元素。
set1 = {1, 2, 3}
set2 = {3, 4, 5}
union_set = set1.union(set2)
print(union_set) # Output: {1, 2, 3, 4, 5}
示例 2
union()
方法还可以将多个集合作为参数,以执行并集操作。
set1 = {1, 2, 3}
set2 = {3, 4, 5}
set3 = {5, 6, 7}
union_set = set1.union(set2, set3)
print(union_set) # Output: {1, 2, 3, 4, 5, 6, 7}
示例 3
union()
方法不会修改原始集合,它返回一个包含组合元素的新集合。
set1 = {1, 2, 3}
set2 = {3, 4, 5}
union_set = set1.union(set2)
print(set1) # Output: {1, 2, 3}
print(set2) # Output: {3, 4, 5}