如何基於嵌套字典的內部值排序Python字典?基於嵌套字典值排序Python字典
例如,整理以下mydict
基礎上context
值:
mydict = {
'age': {'context': 2},
'address': {'context': 4},
'name': {'context': 1}
}
結果應該是這樣的:
{
'name': {'context': 1},
'age': {'context': 2},
'address': {'context': 4}
}
你想要一個列表輸出嗎?或字典輸出? – Deniz 2012-08-01 06:34:16