diy2.py 181 Bytes Edit 1 2 3 4 5 6 7 score = {'语文':90,'数学':98,'英语':95} # 请对字典进行遍历,将保存的分数以键值对的形式提取打印出来 for k,v in score.items(): print(k,v)