python check if all elements in list multiple conditions code example
Example: python if in list multiple
>>> all(x in ['b', 'a', 'foo', 'bar'] for x in ['a', 'b'])
True
>>> all(x in ['b', 'a', 'foo', 'bar'] for x in ['a', 'b'])
True