Python dict.fromkeys()用法

作用:

dict.fromkeys(seq[, value])

python 字典 fromkeys() 函数用于创建一个新字典,以序列 seq 中元素做字典的键,value 为字典所有键对应的初始值, 默认的value为None

>>> a = {}
>>> b = a.fromkeys(['a', 'b', 'c'])
{'a': None, 'b': None, 'c': None}


>>> b = a.fromkeys(['a', 'b', 'c'], 0)
{'a': 0, 'b': 0, 'c': 0}

你可能感兴趣的:(Python,python)