how to join two sets together in python code example
Example: join two set in python
set1 = {1, 4, 5, 6}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)
set1 = {1, 4, 5, 6}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)