Commit 3a1a28e3 by BellCodeEditor

save project

parent 3c3460fb
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(unit) total.append(unit)
print(total) print("-"+30)
total() return total
\ No newline at end of file q=total1()
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