python list is subset of another list code example
Example: list is subset of another list
one = [1, 2, 3]
two = [9, 8, 5, 3, 2, 1]
all(x in two for x in one)
one = [1, 2, 3]
two = [9, 8, 5, 3, 2, 1]
all(x in two for x in one)