Commit d87d5198 by BellCodeEditor

auto save

parent da10a2ce
student1 = {'语':91,'数':88,'英':85}
student2 = {'语':97,'数':98,'英':90}
student3 = {'语':95,'数':100,'英':93}
score = {"空": student1, "依": student2, "贝": student3}
while True:
print()
name = input("名字:")
if name in score:
score = score[name]
for k,v in score.items():
print(k,v)
print("*" * 30)
else:
print("错误")
++ "b/\345\244\247\343\200\202\343\200\202\345\205\253\343\200\202.py"
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