python union,Python中的Union()函数

在本文中,我们将学习有关union()在set()类型上执行的操作之一。所有输入集的并集是最小的集合,其中包含所有集合中的元素(集合中不存在重复元素)。

语法.union(,.......)

返回类型-类型

符号-用功能的第一个字母表示,即概率中的“ U”

示例# Python 3.x. set union() function

set_1 = {'a','b'}

set_2 = {'b','c','d'}

set_3 = {'b','c','d','e','f','g'}

# union operation on two sets

print("set_1 U set_2 : ", set_1.union(set_2))

print("set_3 U set_2 : ", set_2.union(set_3))

print("set_1 U set_3 : ", set_1.union(set_3))

# union operation on three sets

print("set_1 U set_2 U set_3 :", set_1.union(set_2, set_3))

输出结果set_1 U set_2 : {'a', 'd', 'c', 'b'}

set_3 U set_2 : {'e', 'c', 'd', 'b', 'f', 'g'}

你可能感兴趣的:(python,union)