You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
258 B
19 lines
258 B
# test builtin "all" and "any"
|
|
|
|
tests = (
|
|
(),
|
|
[],
|
|
[False],
|
|
[True],
|
|
[False, True],
|
|
[True, False],
|
|
[False, False],
|
|
[True, True],
|
|
range(10),
|
|
)
|
|
|
|
for test in tests:
|
|
print(all(test))
|
|
|
|
for test in tests:
|
|
print(any(test))
|
|
|