ExampleEdit & Run
#Using the any() Function

print(any([1, 0, 0])) 

print(any([0, 0, 0]))
Output:
TrueFalse[Finished in 0.010542329167947173s]

The any() function checks if there is any  value in a given iterable with a boolean value of True.

The function  takes an iterable  such as list, tuple, dictionary etc. as the only argument.

Syntax:
any(iterable)
iterable The iterable containing elements to be checked.
Parameters:

The function returns a boolean value. True if there is an element in with a boolean value of True, False if all the elements have a boolean value of False.

ExampleEdit & Run
print( any([0, 1, 2, 3]) )
print( any(['', [], 0]) )
print( any([0, 0, 0, 0]) )
print( any((False, False, False)) )
Output:
TrueFalseFalseFalse[Finished in 0.010239503113552928s]