在Python中更新并创建一个多维字典

时间:2013-02-14 03:49:46

标签: python dictionary multidimensional-array

我正在解析存储各种代码片段的JSON,我首先构建这些代码段所使用的语言字典:

snippets = {'python': {}, 'text': {}, 'php': {}, 'js': {}}

然后,在循环浏览JSON时,我想要将有关该代码段的信息添加到自己的字典中,并添加到上面列出的字典中。例如,如果我有一个JS片段 - 最终结果将是:

snippets = {'js': 
                 {"title":"Script 1","code":"code here", "id":"123456"}
                 {"title":"Script 2","code":"code here", "id":"123457"}
}

不要混淆水域 - 但是在使用多维数组的PHP中我会做以下事情(我正在寻找类似的东西):

snippets['js'][] = array here

我知道我看到一两个人在谈论如何创建一个多维字典 - 但似乎无法追踪在python中向字典添加字典。谢谢您的帮助。

2 个答案:

答案 0 :(得分:14)

这称为autovivification

您可以使用defaultdict

执行此操作
def tree():
    return collections.defaultdict(tree)

d = tree()
d['js']['title'] = 'Script1'

如果想要有列表,你可以这样做:

d = collections.defaultdict(list)
d['js'].append({'foo': 'bar'})
d['js'].append({'other': 'thing'})

默认的想法是在访问密钥时自动创建元素。顺便说一句,对于这个简单的案例,你可以简单地做:

d = {}
d['js'] = [{'foo': 'bar'}, {'other': 'thing'}]

答案 1 :(得分:6)

来自

snippets = {'js': 
                 {"title":"Script 1","code":"code here", "id":"123456"}
                 {"title":"Script 2","code":"code here", "id":"123457"}
}

在我看来,你想拥有一个词典列表。这里有一些python代码,希望能够产生你想要的东西

snippets = {'python': [], 'text': [], 'php': [], 'js': []}
snippets['js'].append({"title":"Script 1","code":"code here", "id":"123456"})
snippets['js'].append({"title":"Script 1","code":"code here", "id":"123457"})
print(snippets['js']) #[{'code': 'code here', 'id': '123456', 'title': 'Script 1'}, {'code': 'code here', 'id': '123457', 'title': 'Script 1'}]

这是否说清楚了?