I like using any and a generator:
if any(pred(x.item) for x in sequence):
...
instead of code written like this:
found = False
for x in sequence:
if pred(x.n):
found = True
if found:
...
I first learned of this technique from a Peter Norvig article.