Commit 5a8424b9 by BellCodeEditor

auto save

parent 2b00c391
Showing with 14 additions and 12 deletions
new_input = [] def new_input():
while True: total = []
try: while True:
new_input= input("请输入:") try:
except: unit= input("请输入:")
print("要输入整数!") if unit== 'q':
else: break
if new_input== 'q': else:
break unit=int(unit)
except:
print("要输入整数!")
else: else:
new_input.append(unit) total.append(unit)
print(new_input) print(total)
\ No newline at end of file \ 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