score = {'语文':100,'数学':100,'英语':100}

# 请对字典进行遍历,将保存的分数以键值对的形式提取打印出来
for k,v in score.items():
    q=k+v
    print(q)