Commit 2ead5f5a by BellCodeEditor

auto save

parent 62692a77
Showing with 15 additions and 0 deletions
student1 = {'语文': 910, '数学':808, '英语': 508}
student2 = {'语文': 985, '数学': 980, '英语': 908}
student3 = {'语文': 905, '数学': 575, '英语': 943}
score = {'悟空': student1, '诺依': student2, '小贝': student3}
name = input("名字,")
print("*"*25)
if name in score:
score = score[name]
for k, v in imfo.items():
print(k,v)
print("*"*25)
else:
print("nn")
\ 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