Commit 04d09e81 by BellCodeEditor

auto save

parent b12a03eb
Showing with 1 additions and 1 deletions
...@@ -6,9 +6,9 @@ score = {'悟空': student1, '诺依': student2, '小贝': student3} ...@@ -6,9 +6,9 @@ score = {'悟空': student1, '诺依': student2, '小贝': student3}
name = input("名字:") name = input("名字:")
if name in score: if name in score:
info=score[name] info=score[name]
for k,v in info.items():
print(name) print(name)
print("*"*10) print("*"*10)
for k,v in info.items():
print(k,v) print(k,v)
print("*"*10) print("*"*10)
......
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