标签: python-2.7
我正在尝试订购文件,并从高分到低分排行榜 我尝试过
with open('N:\Scoresa.txt') as textFile: fileScores = [line.split() for line in textFile] fileScores.sort(lambda x, y: cmp(x[1], y[1]), reverse = True)
当我对此进行编辑时,它存在语法错误,并且没有reverse = true,所以从低到高排序,如果有解决方案,请提前感谢。