circuitpython/tests/basics/builtin_allany.py

21 lines
306 B
Python
Raw Normal View History

# test builtin "all" and "any"
tests = (
(),
[],
[False],
[True],
[False, True],
[True, False],
[False, False],
[True, True],
(False for i in range(10)),
(True for i in range(10)),
)
for test in tests:
print(all(test))
for test in tests:
print(any(test))