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
Best I could come up with:
any([True for e in (1, 2) if e in a])