Python函数 dict()
Posted
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()的主要内容,如果未能解决你的问题,请参考以下文章