Get your own Python server Result Size: 625 x 565
x
 
x = {"a", "b", "c"}
y = (1, 2, 3)
z = x.union(y)
print(z)
{2, 'a', 3, 'c', 'b', 1}