Commit 9668aeb8 by BellCodeEditor

auto save

parent 8218524a
Showing with 14 additions and 10 deletions
......@@ -3,13 +3,17 @@ stuent2 = {'语文':97,'数学':98,'英语':90}
stuent3 = {'语文':95,'数学':100,'英语':93}
score = {'悟空':stuent1,'诺伊':stuent2,'小贝':stuent3}
name = input("名字: ")
print("*"*30)
if name in score:
score = score[name]
for k,v in info.items():
print(k,v)
print("*"*30)
while True:
print("输入")
name = input("名字: ")
print("*"*30)
if name in score:
info() = score[name]
for k,v in score.items():
print(k,v)
print("*"*30)
elif name == "q":
break
else:
print("错误")
\ No newline at end of file
print("错误")
print("*"*30)
\ 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