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