Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Python Tutorial
  • Interview Questions
  • Python Quiz
  • Python Glossary
  • Python Projects
  • Practice Python
  • Data Science With Python
  • Python Web Dev
  • DSA with Python
  • Python OOPs
Open In App
Next Article:
ascii() in Python
Next article icon

Python any() function

Last Updated : 17 Nov, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False.

Example

Input: [True, False, False]
Output: True

Input: [False, False, False]
Output: False

Python any() Function Syntax

any() function in Python has the following syntax:

Syntax: any(iterable)

  • Iterable: It is an iterable object such as a dictionary, tuple, list, set, etc.                 

Returns: Returns True if any of the items is True.

Python any() Function Example

Python any() Function on Lists in Python. The below example returns True since at least one element in the list (3rd element) is True.

Python3
# a List of boolean values l = [False, False, True, False, False] print(any(l)) 

Output:

True

Python any()  Function Lists

In this example, the any() function is used to check if any value in the list is True. If at least one element in the Python list is True, it will return 'True'; otherwise, it will return 'False'. Additionally, there is a step to check if all elements in List meet condition in Python. This is achieved using the all() function itself.

Python3
# All elements of list are True l = [4, 5, 1] print(any(l))  # All elements of list are False l = [0, 0, False] print(any(l))  # Some elements of list are # True while others are False # l = [1, 0, 6, 7, False] # print(any(l))  # Empty list l = [] print(any(l)) 

Output:

True
False
False

Working of any() Function with Tuples

In this example, we will see the use of the any() function on Python Tuples, providing a way to check if any value is true in a tuple. By using any() we can Check if all items in a list are True. If at least a single element in the tuple is True, the any() function will return 'True' else it will return 'False' even if the tuple is empty.

Python3
# All elements of tuple are True t = (2, 4, 6) print(any(t))  # All elements of tuple are False t = (0, False, False) print(any(t))  # Some elements of tuple are True while # others are False t = (5, 0, 3, 1, False) print(any(t))  # Empty tuple t = () print(any(t)) 

Output:

True
False
True
False

Working of any() Function with Sets

In this example, we will see the use of the any() function on Python Sets, demonstrating how it can be used to check if any value is true in a set. The any() function on sets acts similarly as it is for a list or a tuple. If at least a single element in a set evaluates to be 'True', it will return 'True'.

Python3
# All elements of set are True s = { 1, 1, 3} print(any(s))  # All elements of set are False s = { 0, 0, False} print(any(s))  # Some elements of set are True while others are False s = { 1, 2, 0, 8, False} print(any(s))  # Empty set s = {} print(any(s)) 

Output:

True
False
True
False

Working of any() function with Dictionaries

In the case of a dictionary, if all the keys of the dictionary are false or the dictionary is empty, any() function in Python returns False. If at least one key is True, any() returns True.

Python3
# All keys of dictionary are true d = {1: "Hello", 2: "Hi"} print(any(d))  # All keys of dictionary are false d = {0: "Hello", False: "Hi"} print(any(d))  # Some keys of dictionary # are true while others are false d = {0: "Salut", 1: "Hello", 2: "Hi"} print(any(d))  # Empty dictionary d = {} print(any(d)) 

Output:

True
False
True
False

Working of any() function with Strings

In this example, we will see how Python any() function works with Python String. The any() function returns True, if there is at least 1 character in the string. This usage of the any() function allows you to check if any value is true in a string, effectively determining whether the string is empty or not.

Python3
# Non-Empty String s = "Hi There!" print(any(s))  # Non-Empty String s = "000" print(any(s))  # Empty string s = "" print(any(s)) 

Output:

True
True
False

Python any() Function with a Condition

In this example, the any() function in Python checks for any element satisfying a condition and returns True in case it finds any True value. This function is particularly useful to check if all/any elements in List meet condition in Python. It provides a convenient way to determine if at least one element in an iterable is true.

Python3
# Python3 code to demonstrate working of any() # To Check if any element in list satisfies a condition  # initializing list test_list = [4, 5, 8, 9, 10, 17]  # printing list print("The original list : ", test_list)  # Check if any element in list satisfies a condition # Using any() res = any(ele > 10 for ele in test_list)  # Printing result print("Does any element satisfy specified condition ? : ", res) 

Output:

The original list : [4, 5, 8, 9, 10, 17]
Does any element satisfy specified condition ? : True

Python any() Function with For Loop

In this example, we will implement any() function using Python functions and a for loop and to check if all elements in List are True. The my_any() function returns True if any element of the iterable is True, else returns False.

Python3
# this function gives same result as built-in any() function def my_any(list_x):     for item in list_x:         if item:             return True     return False  x = [4, 5, 8, 9, 10, 17] print(my_any(x)) 

Output:

True

Next Article
ascii() in Python

M

manandeep1610
Improve
Article Tags :
  • Python
  • Python-Built-in-functions
  • python
Practice Tags :
  • python
  • python

Similar Reads

    Python Built in Functions
    Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas
    6 min read
    abs() in Python
    The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege
    3 min read
    Python - all() function
    The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v
    3 min read
    Python any() function
    Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll
    5 min read
    ascii() in Python
    Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa
    3 min read
    bin() in Python
    Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b
    2 min read
    bool() in Python
    In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru
    3 min read
    Python bytes() method
    bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte
    3 min read
    chr() Function in Python
    chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet
    3 min read
    Python dict() Function
    dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences