我有以下的python的dicts列表。合併dict的列表爲python的一個字典
[
{
"US": {
"Intial0": 12.515
},
{
"GE": {
"Intial0": 11.861
}
},
{
"US": {
"Final0": 81.159
}
},
{
"GE": {
"Final0": 12.9835
}
}
]
我想作爲
[{"US": {"Initial0":12.515, "Final0": 81.159}}, {"GE": {"Initial0": 11.861, "Final0": 12.9835}}]
我這個從相當長的一段時間掙扎類型的字典的最終名單。任何幫助?
爲什麼你想要的,而不是一個單一的字典? '{「US」:{...},「GE」:{...}}? –
相關[如何合併多個同一個鍵的字典?](http://stackoverflow.com/questions/5946236/how-to-merge-multiple-dicts-with-same-key) – fredtantini
Rohit,你有什麼嘗試?你看過使用更新嗎? http://www.tutorialspoint.com/python/dictionary_update.htm –