Commit 3e8ef1f1 by BellCodeEditor

save project

parent 246639e0
Showing with 6 additions and 5 deletions
def total():
def total1():
total = []
while True:
unit= input("请输入")
unit= input("请输入(q退出)")
if unit== 'q':
break
else:
......@@ -12,5 +12,7 @@ def total():
print("请重新输入")
else:
total.append(a)
print(total)
total()
\ No newline at end of file
print("-"*30)
return total
r=total1()
print(r)
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