Python Function Reference

any
Return True if any element of the iterable is true. If the iterable is empty, return False.
Python 3.13
any(iterable)
Examples
Python 3.13
>>> any([False, False, True])
True