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