有没有办法在python中从列表中获取键,将字典值初始化为0?

时间:2018-09-19 17:00:12

标签: python dictionary

我有一个列表用作字典的键,并且与键相对应的每个值都将初始化为0。

1 个答案:

答案 0 :(得分:5)

您可以使用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}