Python 字典 fromkeys() 方法

实例

创建拥有 3 个键的字典,值均为 0:

  1. x = ('key1', 'key2', 'key3')
  2. y = 0
  3. thisdict = dict.fromkeys(x, y)
  4. print(thisdict)

定义和用法

fromkeys() 方法返回具有指定键和值的字典。


语法

  1. dict.fromkeys(keys, value)
参数值
参数描述
keys必需。指定新字典键的可迭代对象。
value可选。所有键的值。默认值是 None。

更多实例

与上例相同,但未指定值:

  1. x = ('key1', 'key2', 'key3')
  2. thisdict = dict.fromkeys(x)
  3. print(thisdict)

分类导航