Commit a0a8bbf2 by BellCodeEditor

save project

parent 222b3961
Showing with 2 additions and 2 deletions
...@@ -4,12 +4,12 @@ student3 = {'语文': 95, '数学': 100, '英语': 93} ...@@ -4,12 +4,12 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3} score = {'悟空': student1, '诺依': student2, '小贝': student3}
name=input("给爷输入名") name=input("给爷输入名")
if name in score: if name in score:
into=score[name] info=score[name]
print("*"*30) print("*"*30)
for k,v in info.items(): for k,v in info.items():
print(k,v) print(k,v)
print("*"*30) print("*"*30)
else else:
print("输入错误孙子,给爷输人名") 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