Commit a3178035 by BellCodeEditor

auto save

parent ff9e6811
Showing with 13 additions and 0 deletions
a = 0
for i in range(0,5+1):
a+=i
print(a)
\ No newline at end of file
......@@ -13,3 +13,10 @@ def suanzhang():
return total
a = suanzhang()
print(a)
def zongjia(y):
x = 0
for i in y:
x+=i
return x
z = zongjia(a)
print(z)
\ 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