【Python】Python3 字典 fromkeys()方法

描述
Python字典fromkeys()函数用于创建一个新字典,以序列seq中元素做字典的键,value为字典所有键对应的初始值。
语法
fromkeys()方法语法:

dict.fromkeys(seq[, value]))

参数

  • seq字典键值列表。
  • value可选参数, 设置键序列(seq)的值。

返回值
该方法返回列表。

实例
以下实例展示了fromkeys()函数的使用方法:

seq = ('name', 'age', 'sex')
dict = dict.fromkeys(seq)
print ("新的字典为 : %s" %  str(dict))
新的字典为 : {'name': None, 'age': None, 'sex': None}
seq = ('name', 'age', 'sex')
dict = dict.fromkeys(seq)
print ("新的字典为 : %s" %  str(dict))
新的字典为 : {'name': 10, 'age': 10, 'sex': 10}

你可能感兴趣的:(Python)