Commit 9a811202 by BellCodeEditor

save project

parent 634ec166
Showing with 23 additions and 1 deletions
def hello(name):
con
\ No newline at end of file
def hello(name):
content = "嘿" + name
return content
result = hello("僵尸")
print(result)
\ No newline at end of file
......@@ -10,6 +10,17 @@ def func():
except:
print("只能输入整数或'q'")
return total
def sum(money):
count = 0
for i in money:
count += i
return count
list1 = func()
print(list1)
\ 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