Commit fa91c1c2 by BellCodeEditor

save project

parent 80ae1d9b
Showing with 7 additions and 21 deletions
student1 = {'语文': 91, '数学': 88, '英语': 85}
student2 = {'语文': 97, '数学': 98, '英语': 90}
student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3}
stonenumber=0
name=input("名字")# 查询并打印出输入的名字对应的所有科目的成绩
while True :
name = input("名字:")
if name in score :
a = score[name]
print('*'*30)
for k,v in a.items():
print(k,v)
break
else:
pass
finally:
pass
else:
print('输入错误')
print("*"*30)
print("程序结束")
if stonenumber>=4:
print('获得了打败了灭霸的力量,反杀稳了')
elif 1<=stonenumber<=3:
print('可以全员出动,殊死一搏')
else:
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