python 按值排序字典(降序) - 请参阅http://stackoverflow.com/a/613218

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 按值排序字典(降序) - 请参阅http://stackoverflow.com/a/613218相关的知识,希望对你有一定的参考价值。

from operator import itemgetter
sorted_d = sorted(d.items(), key=itemgetter(1), reverse=True)
# sorted_dict is a list of tuples (key, value)

以上是关于python 按值排序字典(降序) - 请参阅http://stackoverflow.com/a/613218的主要内容,如果未能解决你的问题,请参考以下文章

python 字典排序

字典自定义排序

按值然后键对字典进行排序

python怎么对字典进行排序

如何按值和键的多个条件对嵌套字典进行排序?

Python - 字典按值(value)排序