Commit 84ae5d07 by BellCodeEditor

save project

parent 0fe9dee0
Showing with 4 additions and 3 deletions
...@@ -13,12 +13,12 @@ def able(): ...@@ -13,12 +13,12 @@ def able():
total.append(unit) total.append(unit)
return total return total
def money(unit) def money(a):
jia=0 jia=0
for i in able(): for i in a:
jia=jia+i jia=jia+i
return jia return jia
l=able() l=able()
print(l) print(l)
pay=money() pay=money(l)
print(pay) print(pay)
\ 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