Commit e8ae2024 by BellCodeEditor

save project

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