Commit 6a142211 by BellCodeEditor

save project

parent 776b20ae
Showing with 17 additions and 5 deletions
score={'语文':91,'数学':88 ,'英语':85} s1={'语文':91,'数学':88,'英语':85}
for i,k in score.items(): s2={'语文':97,'数学':98,'英语':90}
print(i,k) s3={'语文':95,'数学':100,'英语':93}
s={'悟空':s1,'诺伊':s2,'小贝':s3}
a=s['悟空']
for i,j in a.items():
print("悟空成绩" +i,j)
a2=s['诺伊']
for i,j in a2.items():
print("诺伊成绩" +i,j)
a3=s['小贝']
for i,j in a3.items():
print("小贝成绩" +i,j)
\ 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