Python创建dict的几种方法

Posted 5460wsll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python创建dict的几种方法相关的知识,希望对你有一定的参考价值。

声明:转自CSDN (http://blog.csdn.net/csujiangyu/article/details/45176399)

1. 创建空字典

>>> dic = {}
>>> type(dic)
<type dict>

2.直接赋值创建

>>> dic = {spam:1, egg:2, bar:3}
>>> dic
{bar: 3, egg: 2, spam: 1}

3.通过关键字dict和关键字参数创建

>>> dic = dict(spam = 1, egg = 2, bar =3)
>>> dic
{bar: 3, egg: 2, spam: 1}

4.通过二元组列表创建

>>> list = [(spam, 1), (egg, 2), (bar, 3)]
>>> dic = dict(list)
>>> dic
{bar: 3, egg: 2, spam: 1}

5.dict和zip结合创建

>>> dic = dict(zip(abc, [1, 2, 3]))
>>> dic
{a: 1, c: 3, b: 2}

6.通过字典推导式创建

>>> dic = {i:2*i for i in range(3)}
>>> dic
{0: 0, 1: 2, 2: 4}

7.通过dict.fromkeys()创建

通常用来初始化字典, 设置value的默认值

>>> dic = dict.fromkeys(range(3), x)
>>> dic
{0: x, 1: x, 2: x}

8.其他

>>> list = [x, 1, y, 2, z, 3]
>>> dic = dict(zip(list[::2], list[1::2]))
>>> dic
{y: 2, x: 1, z: 3}

 

以上是关于Python创建dict的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

Laravel:如何在控制器的几种方法中重用代码片段

Python字典(dict )的几种遍历方式

软件测试中,python字典遍历的几种方法?

python之配置日志的几种方式

Python 查看对象属性的几种方式: __dict__, dir(), vars(), locals()

python爬虫多次请求超时的几种重试方法