Commit 747d178e by BellCodeEditor

auto save

parent 2cd3b63d
Showing with 6 additions and 1 deletions
...@@ -5,7 +5,12 @@ def news(): ...@@ -5,7 +5,12 @@ def news():
if b=='d': if b=='d':
break break
else: else:
total.append(b) try:
b=int(b)
except:
print('重写菜单')
else:
total.append(b)
print(total) print(total)
news() news()
......
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