标签: python excel sorting csv delimiter
我试图对这些数据进行排序: - 按字母顺序排列,每个人的考试成绩最高 - 以最高分
答案 0 :(得分:1)
已经回答了问题。见Sort a list by multiple attributes?
list.sort()和sorted()都接受带有布尔值的反向参数。
链接中的一个答案
import operator s = sorted(file, key = operator.itemgetter(1, 2),reverse=True)