Commit c01d08f6 by BellCodeEditor

save project

parent dc70412a
Showing with 1475 additions and 0 deletions
def new_aa():
jiage=[]
while True:
wenti=input("请输入价.(按q退出)")
if wenti == "q":
break
try:
a=int(wenti)
except:
print("请重新输入")
else:
jiage.append(a)
finally:
print("_"*30)
print(jiage)
new_aa()
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