python使用dict函数创建一个字典

1429
2021/3/16 18:06:40
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

python使用dict函数创建一个字典

在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'}

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: python start性能如何优化