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