Commit 95bf2bef by BellCodeEditor

auto save

parent d491eda6
Showing with 6 additions and 7 deletions
def a(): def a():
b=[] b=[]
while 1: while 1:
c=input("请输入(q退出):") c=input("请输入游戏序号(q退出,1末日文字生存日记):")
if c=="q": if c=="q":
break break
else: else:
try: try:
c=int(c) c=int(c)
except: except:
print("请重新输入一个数") print("请重新输入")
else: else:
b.append(c) print("正在打开中...")
print("-"*30) break
print(b) print("-"*50)
a() a()
\ 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