如何根据嵌套字典的内部值对 Python 字典进行排序?
例如,mydict
根据 的值进行以下排序context
:
mydict = {
'age': {'context': 2},
'address': {'context': 4},
'name': {'context': 1}
}
结果应该是这样的:
{
'name': {'context': 1},
'age': {'context': 2},
'address': {'context': 4}
}