Commit 254e402c by BellCodeEditor

save project

parent edf64c46
Showing with 8 additions and 2 deletions
...@@ -13,5 +13,11 @@ def a(): ...@@ -13,5 +13,11 @@ def a():
total.append(unit) total.append(unit)
print(total) print(total)
return total return total
def c (d):
e = 0
for i in d:
e = e+i
return e
b = a() b = a()
print(b) f = c(b)
\ No newline at end of file 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