python 字典列表排序operator.itemgetter()
Posted 职场人的思考
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 字典列表排序operator.itemgetter()相关的知识,希望对你有一定的参考价值。
举例:
import operator
x = [{‘name‘:‘Homer‘, ‘age‘:39}, {‘name‘:‘Bart‘, ‘age‘:10}] sorted_x = sorted(x, key=operator.itemgetter(‘name‘))
print sorted_x
----------------------------- [{‘age‘: 10, ‘name‘: ‘Bart‘}, {‘age‘: 39, ‘name‘: ‘Homer‘}]
以上是关于python 字典列表排序operator.itemgetter()的主要内容,如果未能解决你的问题,请参考以下文章
学不会的python之通过某几个关键字排序分组一个字典列表(列表中嵌套字典)