any() function in Python
A way to test conditions.
This function takes an iterable object as a parameter and returns a Boolean value (True or False).
It works similarly to the OR operator.
Here are the possible return results:
All elements False = False
All elements True = True
Only one element False = True
Only one element True = True
Empty list = False