Python dict() 函数

Posted mariobear

tags:

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

描述

dict() 函数用于创建一个字典。

语法

dict 语法:

class dict(**kwarg)
class dict(mapping, **kwarg)
class dict(iterable, **kwarg)

参数说明:

  • **kwargs -- 关键字
  • mapping -- 元素的容器。
  • iterable -- 可迭代对象。

返回值

返回一个字典。

实例

以下实例展示了 dict 的使用方法:

>>>dict() # 创建空字典
{}
>>> dict(a=a, b=b, t=t) # 传入关键字
{a: a, b: b, t: t}
>>> dict(zip([one, two, three], [1, 2, 3])) # 映射函数方式来构造字典
{three: 3, two: 2, one: 1}
>>> dict([(one, 1), (two, 2), (three, 3)]) # 可迭代对象方式来构造字典
{three: 3, two: 2, one: 1}
>>>

以上是关于Python dict() 函数的主要内容,如果未能解决你的问题,请参考以下文章

python中的 dict() 函数

python字典构造函数dict(mapping)解析

指定函数返回类型为dict的KeysView

Python函数 dict()

Python dict() 函数

Python dict() 函数