Commit f30e092a by BellCodeEditor

save project

parent a85dc135
Showing with 2 additions and 135 deletions
...@@ -4,8 +4,8 @@ student3 = {'语文': 95, '数学': 100, '英语': 93} ...@@ -4,8 +4,8 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3} score = {'悟空': student1, '诺依': student2, '小贝': student3}
for k,v in score.items(): for k,v in score.items():
for a in v: for a,b in v.items():
print print(a,"的分数式"b)
...@@ -21,136 +21,3 @@ for k,v in score.items(): ...@@ -21,136 +21,3 @@ for k,v in score.items():
# else: # else:
# print('输入错误') # print('输入错误')
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