Commit 254e402c by BellCodeEditor

save project

parent edf64c46
Showing with 8 additions and 2 deletions
......@@ -13,5 +13,11 @@ def a():
total.append(unit)
print(total)
return total
def c (d):
e = 0
for i in d:
e = e+i
return e
b = a()
print(b)
\ No newline at end of file
f = c(b)
print(f)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment