Commit 915e4949 by BellCodeEditor

save project

parent 01d17fc9
Showing with 14 additions and 5 deletions
score = {'语文':91,'数学':88,'英语':85}
for k,v in score.items():
QWERTYUIOP1={'Q':3,'W':3,'E':1}
QWERTYUIOP2={'Q':5,'W':3,'E':4}
QWERTYUIOP3={'Q':18,'W':3,'E':4}
ASDFGHJKL={'r':QWERTYUIOP1,'t':QWERTYUIOP2,'y':QWERTYUIOP3}
while True:
name=input("名字:")
if name in ASDFGHJKL:
a=ASDFGHJKL[name]
print('*'*30)
for k,v in a.items():
print(k,v)
break
else:
print('ZXCVBNM')
\ 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