diy2.py 340 Bytes Edit 1 2 3 4 5 6 7 8 9 student1 = {'语文':91,'数学':88,'英语':85} student2 = {'语文':91,'数学':88,'英语':85} student3 = {'语文':91,'数学':88,'英语':85} score = {'悟空':student1,'诺依':student2,'小贝':student3} for i in score.values(): print(i) # 请对字典进行遍历,将保存的分数以键值对的形式提取打印出来