Commit 1c55b49f by BellCodeEditor

auto save

parent ca99cba2
Showing with 53 additions and 1 deletions
def new_input():
total = []
while True:
money=input("请输入(q退出):")
if money== 'q':
break
else:
try:
money=int(money)
except:
print("重新输入一个整数")
else:
total.append(money)
print("-"*30)
return total
\ No newline at end of file
def new_input():
total = []
while True:
money=input("请输入(q退出):")
if money== 'q':
break
else:
try:
money=int(money)
except:
print("重新输入一个整数")
else:
total.append(money)
print("-"*30)
return total
\ No newline at end of file
c def new_input():
total = []
while True:
money=input("请输入(q退出):")
if money== 'q':
break
else:
try:
money=int(money)
except:
print("重新输入一个整数")
else:
total.append(money)
print("-"*30)
return total
\ 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