Commit 3e8ef1f1 by BellCodeEditor

save project

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