Commit bc5a2198 by BellCodeEditor

save project

parent be516199
Showing with 5 additions and 1 deletions
...@@ -5,7 +5,11 @@ student4 = {'三科': 0} ...@@ -5,7 +5,11 @@ student4 = {'三科': 0}
score = {'悟空': student1, '诺依': student2, '小贝': student3,'emmm....':student4} score = {'悟空': student1, '诺依': student2, '小贝': student3,'emmm....':student4}
while True: while True:
name = input("名字:") name = input("名字或退出:")
if name=='退出':
print('退出成功')
print('#'*30)
break
if name in score: if name in score:
cj=score[name] cj=score[name]
for k,y in cj.items(): for k,y in cj.items():
......
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