Get your own Python server Result Size: 625 x 565
x
 
x = {"a", "b", "c"}
y = {"f", "d", "a"}
z = {"c", "d", "e"}
result = x | y | z
print(result)
{'f', 'b', 'e', 'd', 'a', 'c'}