Python Function Reference

all
Return True if all elements of the iterable are true (or if the iterable is empty).
Python 3.13
all(iterable)
Examples
Python 3.13
>>> all([True, True, False])
False