About 3,380 results
Open links in new tab
  1. Python any() function - GeeksforGeeks

    Jul 23, 2025 · Python any () function returns True if any of the elements of a given iterable ( List, Dictionary, Tuple, set, etc) are True …

  2. Python any () Function - W3Schools

    Definition and Usage The any () function returns True if any item in an iterable are true, otherwise it returns False. If the iterable …

  3. Built-in FunctionsPython 3.14.7 documentation

    17 hours ago · Built-in Functions ¶ The Python interpreter has a number of functions and types built into it that are always available. …

  4. How to Use any() in Python – Real Python

    Mar 30, 2020 · If you've ever wondered how to simplify complex conditionals by determining if at least one in a series of conditions is …

  5. Python any () Function - w3schools.dev

    Definition and Usage The any () function returns True if any item in an iterable are true, otherwise it returns False. If the iterable …

  6. Python any () Function - Online Tutorials Library

    The Python any() function is a built-in function that returns True if any of the elements of a given iterable, such as a list, tuple, set, or …

  7. How do Python's any and all functions work? - Stack Overflow

    I'm trying to understand how the any() and all() Python built-in functions work. I'm trying to compare the tuples so that if any value is …

  8. Python any () Function: Guide With Examples and Use Cases

    Jul 31, 2024 · The any() function in Python returns True if at least one element in an iterable (list, tuple, set, etc.) is true, and False …

  9. any () | Python’s Built-in Functions – Real Python

    Reference Python’s Built-in Functions / any () The built-in any () function checks if any element in an iterable is true. It returns a …

  10. Any All in Python - GeeksforGeeks

    Jul 23, 2025 · Any can be thought of as a sequence of OR operations on the provided iterables. It short circuit the execution i.e. stop …