基于嵌套字典值对Python字典进行排序

时间:2012-08-01 06:25:35

标签: python sorting dictionary

如何根据嵌套字典的内部值对Python字典进行排序?

例如,根据mydict

的值对下面的context进行排序
mydict = {
    'age': {'context': 2},
    'address': {'context': 4},
    'name': {'context': 1}
}

结果应该是这样的:

{
    'name': {'context': 1}, 
    'age': {'context': 2},
    'address': {'context': 4}       
}

2 个答案:

答案 0 :(得分:17)

>>> from collections import OrderedDict
>>> mydict = {
        'age': {'context': 2},
        'address': {'context': 4},
        'name': {'context': 1}
}
>>> OrderedDict(sorted(mydict.iteritems(), key=lambda x: x[1]['context']))
OrderedDict([('name', {'context': 1}), ('age', {'context': 2}), ('address', {'context': 4})])

答案 1 :(得分:5)

无论你怎么努力,你都无法对字典进行排序,因为它们是无序的集合。请改用OrderedDict表单collections模块。