Commit 5d0eecda by BellCodeEditor

save project

parent 7fb8e6be
Showing with 29 additions and 13 deletions
s={"a":90,"e":78}
w={"s":45,"o":67}
score={"t":s,"r":w}
for i in score.values():
print(i)
while True:
name=input("mm")
if name in score:
a=score[name]
print("*"*30)
for k,v in a.items():
print(k,v)
break
else:
print("错误")
s={"a":90,"e":78}
w={"s":45,"o":67}
score={"t":s,"r":w}
for i in score.values():
print(i)
while True:
name=input("mm")
if name in score:
a=score[name]
print("*"*30)
for k,v in a.items():
s={"yu":91,"shu":88,"ying":85}
r={"yu":97,"shu":98,"ying":90}
p={"yu":95,"shu":100,"ying":93}
score={"wu":s,"nuo":r,"xiao":p}
name=input("name:")
print("*"*30)
if name in score:
score=score[name]
for k,v in score.items():
print(k,v)
break
else:
print("*"*30)
else:
print("错误")
print("*"*30)
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