描述
Python字典fromkeys()
函数用于创建一个新字典,以序列seq
中元素做字典的键,value
为字典所有键对应的初始值。
语法
fromkeys()
方法语法:
dict.fromkeys(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}