Commit ce804e50 by BellCodeEditor

save project

parent 1bf90462
Showing with 4 additions and 1 deletions
......@@ -5,7 +5,10 @@ s4 = {'语文': 95, '数学':90, '英语': 89}
s5 = {'语文': 79, '数学':94.5, '英语': 99}
score = {'悟空': s1, '诺依': s2, '小贝': s3,"1":s4,"2":s5}
while True :
name = input("请输入您要查询的名字:")
name = input("请输入您要查询的名字,按q可推出:")
if name == "q":
print("拜拜了您妹!**********************************************************************************************")
break
if name in score :
a = score[name]
print('*'*30)
......
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