Use the Python built-ins functions!
- any(iterable) - Return True if any element of the iterable is true.
- all(iterable) - Return True if all elements of the iterable are true
Reads like English 😍
>>> names = ("Oscar", "Tamara", "Jim", "April")
>>> any(name.startswith("J") for name in names)
True
>>> all(len(name) > 2 for name in names)
True
#built-ins