Commit 4b01657a by BellCodeEditor

auto save

parent 6a081307
Showing with 11 additions and 7 deletions
...@@ -4,16 +4,20 @@ student3 = {'语文': 95, '数学': 100, '英语': 93} ...@@ -4,16 +4,20 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3} score = {'悟空': student1, '诺依': student2, '小贝': student3}
while True:
name = input("名字:") print('*'*30)
a=score[name] name = input("名字:")
print('*'*30)
if name in score: if name in score:
pass pass
else: else:
print('姓名不存在') print('姓名不存在')
for k,v in a.items(): print('*'*30)
continue
a=score[name]
for k,v in a.items():
print(k,v) print(k,v)
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