關於此主題有許多問題,但我還未能適應解決方案以適應我的情況。本來我的字典,我從一個平面文件得到的列表:將詞典列表轉換爲嵌套詞典
[{'Name': 'Jim', 'Attribute': 'Height', 'Value': '6.3'},
{'Name': 'Jim', 'Attribute': 'Weight', 'Value': '170'},
{'Name': 'Mary', 'Attribute': 'Height', 'Value': '5.5'},
{'Name': 'Mary', 'Attribute': 'Weight', 'Value': '140'}]
,我想將其轉換爲一個嵌套的字典,該屬性/值對與每一個名字:
{
'Jim': {'Height': '6.3', 'Weight': '170'},
'Mary': {'Height': '5.5', 'Weight': '140'}
}
我不認爲你可以在一個字典中有兩個帶有不同值的'Jim'鍵。 – Kevin
那麼http://www.whathaveyoutried.com? –
@Kevin - 謝謝糾正排字錯誤 –