Creating dictionary of dictionaries in python 2.6

天大地大妈咪最大 提交于 2019-12-01 01:16:12

You can use the dict() constructor:

value_dicts = dict((x, {}) for x in values)

This uses a generator expression that constructs (key, value) tuples, which the dict() constructor is happy to turn into a dictionary for you.

Demo:

>>> values=[0,1,2,4,5,8] 
>>> dict((x, {}) for x in values)
{0: {}, 1: {}, 2: {}, 4: {}, 5: {}, 8: {}}

The syntax you used (a dict comprehension) was not introduced until Python 2.7 and Python 3, see PEP 274.

Depending on your intended use, you could also just use a defaultdict instead.

from collections import defaultdict
value_dicts = defaultdict(lambda: defaultdict(int))
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!