I\'m trying to find a short way to see if any of the following items is in a list, but my first attempt does not work. Besides writing a function to accomplish this, is the
Ah, Tobias you beat me to it. I was thinking of this slight variation on your solution:
>>> a = [1,2,3,4] >>> b = [2,7] >>> any(x in a for x in b) True