I want to test if two or more values have membership on a list, but I'm getting an unexpected result:
>>> 'a','b' in ['b', 'a', 'foo', 'bar']
('a', True)
So, Can Python test the membership of multiple values at once in a list? What does that result mean?