python判断两个list包含关系

a = [1,2]

b = [1,2,3]

c = [0, 1]

set(b) > set(a)

set(b) > set(c)