sorted()函数为dict排序
Posted Apollo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sorted()函数为dict排序相关的知识,希望对你有一定的参考价值。
描述
Python的 sorted() 函数 用于给dict(字典)数据结构排序,按dict中 value的大小排序,大小优先级可以指定。需在文件之前导入operator模块
语法
sorted()方法语法:
sorted(dictname.iteritems(), key=operator.itemgetter(1), reverse=True);
参数
-
dictname
-- 被排序的字典变量名 - key=operator.itemgetter(1) --固定
- reverse --是否按又大到小排序,true是
返回值
返回排好序的字典。
实例
以下实例展示了sorted()函数的使用方法:
以上是关于sorted()函数为dict排序的主要内容,如果未能解决你的问题,请参考以下文章
python sorted排序:使用lambda应对各种复杂情况的排序,包括list嵌套dict