all any python code example

Example 1: all in python

'''
Return Value from all()
all() method returns:

True - If all elements in an iterable are true
False - If any element in an iterable is false
'''

# all values true
l = [1, 3, 4, 5]
print(all(l))            # Result : True

# all values false
l = [0, False]
print(all(l))			 # Result : False

# one false value ( As 0 is considered as False)
l = [1, 3, 4, 0]
print(all(l))			 # Result : False

# one true value
l = [0, False, 5]
print(all(l))			 # Result : False

# empty iterable
l = []
print(all(l))

Example 2: any python

# True since 1,3 and 4 (at least one) is true
l = [1, 3, 4, 0]
print(any(l))

# False since both are False
l = [0, False]
print(any(l))

# True since 5 is true
l = [0, False, 5]
print(any(l))

Example 3: python all any example

if true and true and true and true: none
if all ([true, true, true, true]): none

if true or true or true or true or true: none
if any ([true, true, true, true, true]): none