Commit 1da7f181 by BellCodeEditor

save project

parent 877f59e4
Showing with 12 additions and 7 deletions
......@@ -4,9 +4,14 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3}
# name = input("名字:")
# info=score[name]yi
# for k,v in info.items():
# print(k,v)
a=score["诺依"]["数学"]
print(a)
\ No newline at end of file
name = input("名字:")
if name in score:
score=score[name]
sb=input("科目:")
if sb in score:
a=score[sb]
print(a)
# for k,v in score.items():
# print(k,v)
else:
print("请重新输入名字")
\ 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