當前位置:成語大全網 - 新華字典 - 已知小明小紅小亮的語數英成績,如何使用Python字典將姓名、學科、成績分別對應,並且計算誰總分最高?

已知小明小紅小亮的語數英成績,如何使用Python字典將姓名、學科、成績分別對應,並且計算誰總分最高?

test = {

"小明": {"math": 85, "english": 96, "chinese": 88},

"小紅": {"math": 72, "english": 80, "chinese": 91},

"小亮": {"math": 83, "english": 69, "chinese": 75},

}

score_max={"name":"","score":0}

for k,v in test.items():

####if sum(v.values())>score_max["score"]:

#########score_max["name"]=k

#########score_max["score"]=sum(v.values())

print(f"得分最高的是{score_max['name']},分數為:{score_max['score']}")