这篇博客主要是总结使用python的dictionary使用方法和技巧
list 转 dict
使用dict的内置方法: fromkeys()Syntax
dict. fromkeys(iterable[, value])
iterable: 必选参数,可迭代的object
value:可选参数,默认为None
Return: 返回一个dictPython 字典(Dictionary) fromkeys() 函数用于创建一个新字典,以序列seq中元素做字典的键,value为字典所有键对应的初始值。
a = [1, 2, 3]
b = dict.fromkeys(a, 0)
print(a)
print(b)
显示结果
[1, 2, 3]
{1: 0, 2: 0, 3: 0}
建立了dict b,其中keys为a,values为设置的默认值