python使用dict函数创建一个字典 python 中构建字典 dict 的几种方式

主机教程 建站分享 2年前 (2022-09-28) 190次浏览

文章摘要:python使用dict函数创建一个字典 python 中构建字典 dict 的几种方式

在python中使用dict()函数创建字典的方法 dict:dict()函数的作用是用于创建一个字典。 di […]

在python中使用dict()函数创建字典的方法

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

dict()函数语法:

class dict(**kwarg)

class dict(mapping, **kwarg)

class dict(iterable, **kwarg)

参数:

**kwargs:关键字。

mapping :元素的容器。

iterable:可迭代对象。

dict()函数使用方法:

>>> items = [('name','Gumby'),('age'.42)]

>>> d = dict(items)

>>> d

{'age':42,'name':'Gumby'}

>>> d = dict(name='Gumby','age'=42)

>>> d

{'age':42,'name':'Gumby'}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python使用dict函数创建一个字典 python 中构建字典 dict 的几种方式
文章链接:http://www.7966.org/post/13332.html
转载请注明出处

喜欢 (0)