欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python中创建字典的5种方式

程序员文章站 2022-04-06 15:07:07
...

摘抄自《流畅的Python》一书,创建字典的5种方法:

a = dict(one=1, two=2, three=3)

b = {'one': 1, 'two': 2, 'three': 3}

c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))

d = dict([('one', 1), ('two', 2), ('three', 3)])

e = dict({'one': 1, 'two': 2, 'three': 3})

以上5种方式创建的字典完全相同,即运行下面代码,会返回True值:

a == b == c == d == e
相关标签: Python