Commit 9668aeb8 by BellCodeEditor

auto save

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