This function, applied to some sequence, is a predicate that tests whether any
of the elements of that sequence are True. If
any element is not already type bool, it is
converted to a Boolean value using the bool()
built-in function.
>>> noneTrue = (0, 0.0, (), None) >>> any(noneTrue) False >>> someTrue = (0, 0.0, (88,), 'penguin') >>> any(someTrue) True