Commit e42d1a53 by BellCodeEditor

save project

parent b0c2d536
Showing with 18 additions and 0 deletions
def new_input():
total=[]
while True:
a = input('')
if a =='q':
break
else:
try:
b=int(a)
except:
print('错误')
else:
total.append(b)
finally:
print('=================================================================')
return count
\ 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