参考链接: Python Set union()
两个给定集合的并集是包含两个集合的所有元素的最小集合。...示例:
Input:Let set A = {2, 4, 5, 6}
and set B = {4, 6, 7, 8}
Output:{2, 4, 5, 6, 7, 8}
Explanation...以下是上述方法的Python3实现:
# Python3 program for union() function
set1 = {2, 4, 5, 6}
set2 = {4, 6, 7, 8}