客趣旅游网
1、使用dict()函数,通过其他映射(比如其他字典)或者键,值对的序列建立字典。
dict1 = dict(a='a', b='b', t='t') # 传入关键字 print(dict1) dict2 = dict(zip(['one', 'two', 'three'], [1, 2, 3])) # 映射函数方式来构造字典 print(dict2) dict3 = dict([('one', 1), ('two', 2), ('three', 3)]) # 可迭代对象方式来构造字典 print(dict3)
2、使用fromkeys()函数,只用来创建新字典,不负责保存。
当通过一个字典来调用 fromkeys 方法时,如果需要后续使用一定记得给他复制给其他的变量。
dict3 = dict.fromkeys(['name','age']) print(dict3) dict4 = dict.fromkeys(['name','age'],10) print(dict4)
以上就是python用函数创造字典的方法,希望对大家有所帮助。更多Python学习指路:
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。