scores = {
"李刚": 93,
"陈静": 78,
"张金柱": 88,
"赵启山": 91,
"李鑫": 65,
"黄宁": 83
}
sorted_scores = sorted(scores.items(), key=lambda x: x[1], reverse=True)
for item in sorted_scores:
print(item[0], end=" ")
运行结果为:李刚 赵启山 张金柱 黄宁 陈静 李鑫
该程序使用字典来存储考生姓名和对应的成绩,然后使用sorted函数对字典按照成绩进行降序排序。最后通过循环遍历排序后的结果,打印考生姓名。