python dict()

Posted Me-Newbie

tags:

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

 dict()

作用:dict() 函数用于创建一个字典。返回一个字典。

语法:

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

参数说明:

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

 

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

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

Python list & dict & str

python-列表list- 元组(tuple)- 集合(set)-字典(dict)-实例代码

一些Python代码

如何正确更新dict中的dict? (Python)[重复]

python HTTP状态代码作为dict。资料来源:https://httpstatuses.com/

常用python日期日志获取内容循环的代码片段