Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
any
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