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)
{1, 3, 2, 'a', 'c', 'b'}