Commit 07199320 by BellCodeEditor

save project

parent 6c15b4dc
Showing with 7 additions and 0 deletions
......@@ -12,3 +12,10 @@ def new_input():
total.append(unit)
return total
print(new_input())
def new_sum(money):
count = 0
for i in money:
count = count+i
return count
money = new_input()
print(str(new_sum(money)))
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