如何以相反的方式制作元组顺序?

时间:2015-12-06 12:13:40

标签: python

我对python比较陌生,所以我需要一些帮助来设置字典的最高到最低排序系统。 我用:

highestList = sorted(classFile.items(), key=lamda x: x[::-1])

这将我的字典整理成一个元组,但这是错误的方法。它输出:

[('Dylan', 4), ('Jimmy', 5), ('Mark', 5), ('Chris', 7)]

我想要输出的地方:

[('Chris', 7), ('Mark', 5), ('Jimmy',5), ('Dylan',4)]

1 个答案:

答案 0 :(得分:1)

highestList = sorted(classFile.items(), key=lamda x: x[::-1],reverse=True)

使用reverse=True