Commit 1f40612a by BellCodeEditor

save project

parent 8be0b03c
Showing with 8 additions and 4 deletions
...@@ -2,14 +2,18 @@ q1={'1':1,'2':3,'3':4} ...@@ -2,14 +2,18 @@ q1={'1':1,'2':3,'3':4}
q2={'1':1,'2':3,'4':5} q2={'1':1,'2':3,'4':5}
q3={'1':1,'2':3} q3={'1':1,'2':3}
q={'w1':q1,'w2':q2,'w3':q3} q={'w1':q1,'w2':q2,'w3':q3}
ww=input('') while True:
print('*'*3000) print('退出请按s键')
if ww in q: ww=input('')
print('*'*3000)
if ww in q:
q=q[ww] q=q[ww]
for k,v in q.items(): for k,v in q.items():
print(k,v) print(k,v)
print('#'*3000) print('#'*3000)
else: elif ww=='s':
break
else:
print('错误 ') print('错误 ')
......
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