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