Returns a Boolean value that indicates whether the collection contains any values that evaluate to True.
any (iterable)
- iterable
- Required. Any iterable type.
#TODO
#TODO
If the iterable is empty, returns False.
>>> any([True, True])
True
>>> any([True, False])
True
>>> any([False, False])
False
>>> any('False')
True
>>> any([])
False#TODO