15 lines
177 B
Python
15 lines
177 B
Python
|
# test builtin "sum"
|
||
|
|
||
|
tests = (
|
||
|
(),
|
||
|
[],
|
||
|
[0],
|
||
|
[1],
|
||
|
[0, 1, 2],
|
||
|
(i for i in range(10)),
|
||
|
)
|
||
|
|
||
|
for test in tests:
|
||
|
print(sum(test))
|
||
|
print(sum(test, -2))
|