小码哥的IT人生

Python 字典 fromkeys() 方法

Python基础 2022-06-06 16:06:45小码哥的IT人生shichen

Python 字典 fromkeys() 方法

实例

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

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

完整实例:

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

定义和用法

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

语法

dict.fromkeys(keys, value)

参数值

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

更多实例

示例代码:

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

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

完整实例:

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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024