Files
TencentOS-tiny/components/language/micropython/tests/basics/builtin_sum.py
2022-09-29 12:10:37 +08:00

15 lines
164 B
Python

# test builtin "sum"
tests = (
(),
[],
[0],
[1],
[0, 1, 2],
range(10),
)
for test in tests:
print(sum(test))
print(sum(test, -2))