Example:
lista = ['p','o','o','p']
listb = ['p','o','o','h','a','b','c']
if I use the issubset method, it will turn out to be True. When in fact lista is not a subset of listb. I'm coding in python by the way. To clarify, the code has to work in this case:
lista = ['p','o','o','p']
listb = ['p','o','o','h','p','b','c']
The above shall return true.
But,
lista = ['p','o','o','p']
listb = ['p','o','h','p','b','c']
The above will be false. The first example is also false.