I would like to know the quickest or the shortest way to check if all the strings in a list occur in another specific string.
Ex:  
l = ['I','you']
s = ['I do like you']
in this case, I would like to see if both I and you appear in I do like you. Is there a one-liner? Instead of a for loop and checking one by by manually, in a traditional way?  
 
     
     
     
    