码迷,mamicode.com
首页 > 编程语言 > 详细

Python dict() 函数

时间:2017-10-16 19:35:46      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:一个   可迭代对象   mapping   div   ble   字典   iter   参数   方法   

描述

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() 函数

标签:一个   可迭代对象   mapping   div   ble   字典   iter   参数   方法   

原文地址:http://www.cnblogs.com/wushuaishuai/p/7678210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!