Commit 6966437c by BellCodeEditor

auto save

parent a958ee56
Showing with 9 additions and 2 deletions
...@@ -11,4 +11,11 @@ def func(): ...@@ -11,4 +11,11 @@ def func():
else: else:
total.append(unit) total.append(unit)
return total return total
func() def sum(money):
\ No newline at end of file count=0
for i in money:
count=count+i
return count
a=func()
b=sum(a)
print(b)
\ 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