Commit 1da7f181 by BellCodeEditor

save project

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