Commit b02b6d28 by BellCodeEditor

save project

parent 5561faf4
Showing with 6 additions and 3 deletions
...@@ -3,9 +3,12 @@ b={'yw':91,'sx':8,'yu':85} ...@@ -3,9 +3,12 @@ b={'yw':91,'sx':8,'yu':85}
c={'yw':9,'sx':88,'yu':5} c={'yw':9,'sx':88,'yu':5}
d={'q':a,'w':b,'e':c} d={'q':a,'w':b,'e':c}
f=input("mz") f=input("mz")
g=d[f] if f in d:
for i,j in g.items(): g=d[f]
print(i,j) for i,j in g.items():
print(i,j)
else:
print("guan")
......
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