Bergabunglah dengan dua set di Python
set1 = {1, 4, 5, 6}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)
Bst Barracuda
set1 = {1, 4, 5, 6}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)