当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python dict()用法及代码示例


dict() 构造函数在 Python 中创建一个字典。

dict() 构造函数的不同形式是:

class dict(**kwarg)
class dict(mapping, **kwarg)
class dict(iterable, **kwarg)

注意: **kwarg让您采用任意数量的关键字参数。

关键字参数是前面有标识符的参数(例如 name= )。因此,kwarg=value 形式的关键字参数被传递给 dict() 构造函数以创建字典。

dict() 不返回任何值(返回 None )。

示例 1:仅使用关键字参数创建字典

numbers = dict(x=5, y=0)
print('numbers =', numbers)
print(type(numbers))

empty = dict()
print('empty =', empty)
print(type(empty))

输出

numbers = {'y': 0, 'x': 5}
<class 'dict'>
empty = {}
<class 'dict'>

示例 2:使用 Iterable 创建字典

# keyword argument is not passed
numbers1 = dict([('x', 5), ('y', -5)])
print('numbers1 =',numbers1)

# keyword argument is also passed
numbers2 = dict([('x', 5), ('y', -5)], z=8)
print('numbers2 =',numbers2)

# zip() creates an iterable in Python 3
numbers3 = dict(dict(zip(['x', 'y', 'z'], [1, 2, 3])))
print('numbers3 =',numbers3)

输出

numbers1 = {'y': -5, 'x': 5}
numbers2 = {'z': 8, 'y': -5, 'x': 5}
numbers3 = {'z': 3, 'y': 2, 'x': 1}

示例 3:使用映射创建字典

numbers1 = dict({'x': 4, 'y': 5})
print('numbers1 =',numbers1)

# you don't need to use dict() in above code
numbers2 = {'x': 4, 'y': 5}
print('numbers2 =',numbers2)

# keyword argument is also passed
numbers3 = dict({'x': 4, 'y': 5}, z=8)
print('numbers3 =',numbers3)

输出

numbers1 = {'x': 4, 'y': 5}
numbers2 = {'x': 4, 'y': 5}
numbers3 = {'x': 4, 'z': 8, 'y': 5}

相关用法


注:本文由纯净天空筛选整理自 Python dict()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。