Commit 83363a1a by BellCodeEditor

auto save

parent de186efc
Showing with 8 additions and 7 deletions
...@@ -15,13 +15,13 @@ def W(): ...@@ -15,13 +15,13 @@ def W():
print('=====================') print('=====================')
return x return x
def sum(sun): def sum(money):
co=0 count=0
for i in sun: for i in money:
co=co+i count=count+i
return co return count
poo=W() poo=W()
print(poo)
py= sum(poo) py= sum(poo)
print('你消费了'+str(py)) print(py)
\ 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