How to check if all of the following items are in a list?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Darkness Approaches Looping
--
Chapters
00:00 How To Check If All Of The Following Items Are In A List?
00:38 Answer 1 Score 73
01:01 Accepted Answer Score 302
01:30 Answer 3 Score 25
01:49 Answer 4 Score 14
02:16 Thank you
--
Full question
https://stackoverflow.com/questions/3931...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#list #python #inclusion
#avk47
ACCEPTED ANSWER
Score 302
Operators like <= in Python are generally not overriden to mean something significantly different than "less than or equal to".  It's unusual for the standard library does this--it smells like legacy API to me.
Use the equivalent and more clearly-named method, set.issubset.  Note that you don't need to convert the argument to a set; it'll do that for you if needed.
set(['a', 'b']).issubset(['a', 'b', 'c'])
ANSWER 2
Score 73
I would probably use set in the following manner : 
set(l).issuperset(set(['a','b'])) 
or the other way round :
set(['a','b']).issubset(set(l)) 
I find it a bit more readable, but it may be over-kill. Sets are particularly useful to compute union/intersection/differences between collections, but it may not be the best option in this situation ...
ANSWER 3
Score 25
I like these two because they seem the most logical, the latter being shorter and probably fastest (shown here using set literal syntax which has been  backported to Python 2.7):
all(x in {'a', 'b', 'c'} for x in ['a', 'b'])
#   or
{'a', 'b'}.issubset({'a', 'b', 'c'})
ANSWER 4
Score 14
What if your lists contain duplicates like this:
v1 = ['s', 'h', 'e', 'e', 'p']
v2 = ['s', 's', 'h']
Sets do not contain duplicates. So, the following line returns True.
set(v2).issubset(v1)
To count for duplicates, you can use the code:
v1 = sorted(v1)
v2 = sorted(v2)
def is_subseq(v2, v1):
    """Check whether v2 is a subsequence of v1."""
    it = iter(v1)
    return all(c in it for c in v2) 
So, the following line returns False.
is_subseq(v2, v1)