标签: python dictionary
我有一个列表用作字典的键,并且与键相对应的每个值都将初始化为0。
答案 0 :(得分:5)
您可以使用dict.fromkeys
dict.fromkeys
In [34]: dict.fromkeys(range(5),0) Out[34]: {0: 0, 1: 0, 2: 0, 3: 0, 4: 0} In [35]: dict.fromkeys(['a','b','c'],0) Out[35]: {'a': 0, 'b': 0, 'c': 0}