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