python中为什么没有dict函数 python中dict函数怎么用

主机教程 建站分享 2年前 (2022-12-19) 177次浏览

文章摘要:python中为什么没有dict函数 python中dict函数怎么用

python中是存在dict函数的,dict()函数的作用是用于创建一个字典。 dict()函数语法: cla […]

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函数怎么用
文章链接:http://www.7966.org/post/14607.html
转载请注明出处

喜欢 (0)