Commit 3e6584d3 by BellCodeEditor

auto save

parent c47f4a9f
Showing with 5 additions and 3 deletions
...@@ -6,8 +6,10 @@ score = {'悟空': student1, '诺依': student2, '小贝': student3} ...@@ -6,8 +6,10 @@ score = {'悟空': student1, '诺依': student2, '小贝': student3}
name = input("名字:")#输入 name = input("名字:")#输入
for k,v in score[name].items(): if name in score:
print("*"*10000000000)
for k,v in score[name].items():
print(k+","+str(v)) print(k+","+str(v))
print("*"*10000000000)
else: else:
print(9099000) 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