python 内置函数 dict()

Posted 诗雨时

tags:

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

                                                  内置函数 dict()

 

1、描述:dict() 函数用于创建一个字典。

2、语法:

    class dict(**kwarg)

    class dict(mapping, **kwarg)

    class dict(iterable, **kwarg)

3、参数说明:

    **kwarg -- 关键字。

    mapping -- 元素的容器。

    iterable -- 可迭代对象。

4、返回值:返回一个字典。

5、实例:

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

# 创建空字典
data_dict = dict()
print(data_dict)

# 传入关键字
data_dict = dict(one=1, two=2, three=3)
print(data_dict)

# 映射函数方式来构造字典
data_dict = dict(zip(["one", "two", "three"], [1, 2, 3]))
print(data_dict)

# 可迭代对象方式来构造字典
data_dict = dict([("one", 1), ("two", 2), ("three", 3)])
print(data_dict)

6、运行结果:

   
    'one': 1, 'two': 2, 'three': 3
    'one': 1, 'two': 2, 'three': 3
    'one': 1, 'two': 2, 'three': 3

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

python内置函数字典(dict)

Python 字符串字典内置函数&方法

Python基础编程 内置函数

Python内置函数(66)——vars

python基础-内置函数

Python-内置函数1匿名函数闭包