Commit f8be67bf by BellCodeEditor

save project

parent 4ea55056
Showing with 3 additions and 11 deletions
......@@ -4,16 +4,8 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3}
name= input("名字:")
if name in score:
info=score[name]
for i,b in info.items():
print(i,b)
print("*"*30)
else:
print("查询错误")
name = input("名字:")
info=score[name]
print(info)
# 查询并打印出输入的名字对应的所有科目的成绩
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