'''
All
= Return True if all elements of the iterable are truthy (or if the iterable is empty),
same as AND operator.
ex)
'''
all([0,1,2,3]) # False, because 0 is falsy it will be True if all is Truthy
all([char for char in 'eio' if char in 'aeiou']) # True
all([num for num in [4,2,10,6,8] if num % 2 == 0]) # True
'''
Any
= Return True if any element of the iterable is truthy. If the iterable is empty,
return False, same as OR operator.
ex)
'''
any([0,1,2,3]) # True, because if any element is truthy is True even tough 0 is falsy.
any([val for val in [1,2,3] if val > 2]) # True
any([val for val in [1,2,3] if val > 5]) # False