Is there a way I can initialize dictionary values to 0 in python taking keys from a list?
本问题已经有最佳答案,请猛点这里访问。
我有一个列表用作字典的键,与键对应的每个值都将被初始化为0。
你可以用EDOCX1[0]
1 2 3 4 | 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} |