Commit edd980de by BellCodeEditor

save project

parent cc39d013
Showing with 11 additions and 11 deletions
...@@ -4,14 +4,14 @@ student3 = {'语文': 95, '数学': 100, '英语': 93} ...@@ -4,14 +4,14 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score={'悟空':student1,'诺伊':student2,'小白':student3} score={'悟空':student1,'诺伊':student2,'小白':student3}
while True: while True:
print('请输入想要查询的名字,提出请输入q') print('请输入想要查询的名字,提出请输入q')
name=input('名字: ') name=input('名字: ')
print('*'*30)
if name in score:
score = score[name]
for k, v in score.items():
print(k,v)
print('*'*30) print('*'*30)
elif name=='q': if name in score:
break score = score[name]
else: for k, v in score.items():
print('出现错误,请输入正确的名字') print(k,v)
\ No newline at end of file print('*'*30)
elif name=='q':
break
else:
print('出现错误,请输入正确的名字')
\ No newline at end of file
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