Open In App

Python any() function

Last Updated : 17 Nov, 2023
Improve
Improve
Like Article
Like
Save
Share
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




Previous Article
Next Article

Similar Reads

Numpy recarray.any() function | Python
In numpy, arrays may have a data-types containing fields, analogous to columns in a spreadsheet. An example is [(a, int), (b, float)], where each entry in the array is a pair of (int, float). Normally, these attributes are accessed using dictionary lookups such as arr['a'] and arr['b']. Record arrays allow the fields to be accessed as members of th
3 min read
Numpy MaskedArray.any() function | Python
In many circumstances, datasets can be incomplete or tainted by the presence of invalid data. For example, a sensor may have failed to record a data, or recorded an invalid value. The numpy.ma module provides a convenient way to address this issue, by introducing masked arrays.Masked arrays are arrays that may have missing or invalid entries. numpy
3 min read
Print first m multiples of n without using any loop in Python
Given n and m, print first m multiples of a m number without using any loops in Python. Examples: Input : n = 2, m = 3 Output : 2 4 6 Input : n = 3, m = 4 Output : 3 6 9 12 We can use range() function in Python to store the multiples in a range. First we store the numbers till m multiples using range() function in an array, and then print the array
3 min read
Python | Sort Tuples in Increasing Order by any key
Given a tuple, sort the list of tuples in increasing order by any key in tuple. Examples: Input : tuple = [(2, 5), (1, 2), (4, 4), (2, 3)] m = 0 Output : [(1, 2), (2, 3), (2, 5), (4, 4)] Explanation: Sorted using the 0th index key. Input : [(23, 45, 20), (25, 44, 39), (89, 40, 23)] m = 2 Output : Sorted: [(23, 45, 20), (89, 40, 23), (25, 44, 39)] E
3 min read
Python program display any message on heart
This article focuses on discussing how to draw a heart with a beautiful message to your loved ones to express what you feel about them. Three types of variants of the above problem statement will be discussed here: Red Heart with a message.Pink-Red Heart with a message.Pink Heart with a message in a different font and color than in the above two ca
3 min read
Python - Test if String contains any Uppercase character
Given a String, Test if it contains any uppercase character. Input : test_str = 'geeksforgeeks' Output : False Explanation : No uppercase character in String.Input : test_str = 'geeksforgEeks' Output : True Explanation : E is uppercase in String. Method #1 : Using loop + isupper() In this, we iterate for each character in String, check for uppercas
6 min read
Python | Pandas Series/Dataframe.any()
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas any() method is applicable both on Series and Dataframe. It checks whether any value in the caller object (Dataframe or series) i
3 min read
Python | Pandas Index.any()
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.any() function checks if any of the elements in the index are true or not. It returns one single boolean value if axis is n
2 min read
Python | Remove tuple from list of tuples if not containing any character
Given a list of tuples, the task is to remove all those tuples which do not contain any character value. Example: Input: [(', ', 12), ('...', 55), ('-Geek', 115), ('Geeksfor', 115),] Output: [('-Geek', 115), ('Geeksfor', 115)] Method #1 : Using list comprehension C/C++ Code # Python code to remove all those # elements from list of tuple # which doe
4 min read
Python | Check if two lists have any element in common
Sometimes we encounter the problem of checking if one list contains any element of another list. This kind of problem is quite popular in competitive programming. Let's discuss various ways to achieve this particular task. Method #1: Using any() C/C++ Code # Python code to check if two lists # have any element in common # Initialization of list lis
5 min read
Practice Tags :