描述
dict() 函数用于创建一个字典。
语法
dict 语法:
1 2 3
| class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg)
|
参数说明:
- **kwargs – 关键字。
- mapping – 元素的容器,映射类型(Mapping Types)是一种关联式的容器类型,它存储了对象与对象之间的映射关系。
- iterable – 可迭代对象。
返回值
返回一个字典。
实例
以下实例展示了 dict 的使用方法:
1 2 3 4 5 6 7 8 9
| >>>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} >>>
|
只使用关键字参数创建字典
实例
1 2 3 4 5 6 7
| numbers = dict(x=5, y=0) print('numbers =', numbers) print(type(numbers))
empty = dict() print('empty =', empty) print(type(empty))
|
以上实例输出结果为:
1 2 3 4
| numbers = {'y': 0, 'x': 5} <class 'dict'> empty = {} <class 'dict'>
|
使用可迭代对象创建字典
实例
1 2 3 4 5 6 7 8 9 10 11
| numbers1 = dict([('x', 5), ('y', -5)]) print('numbers1 =',numbers1)
numbers2 = dict([('x', 5), ('y', -5)], z=8) print('numbers2 =',numbers2)
numbers3 = dict(dict(zip(['x', 'y', 'z'], [1, 2, 3]))) print('numbers3 =',numbers3)
|
以上实例输出结果为:
1 2 3
| numbers1 = {'y': -5, 'x': 5} numbers2 = {'z': 8, 'y': -5, 'x': 5} numbers3 = {'z': 3, 'y': 2, 'x': 1}
|
使用映射来创建字典
映射类型(Mapping Types)是一种关联式的容器类型,它存储了对象与对象之间的映射关系。
实例
1 2 3 4 5 6 7 8 9 10
| numbers1 = dict({'x': 4, 'y': 5}) print('numbers1 =',numbers1)
numbers2 = {'x': 4, 'y': 5} print('numbers2 =',numbers2)
numbers3 = dict({'x': 4, 'y': 5}, z=8) print('numbers3 =',numbers3)
|
以上实例输出结果为:
1 2 3
| numbers1 = {'x': 4, 'y': 5} numbers2 = {'x': 4, 'y': 5} numbers3 = {'x': 4, 'z': 8, 'y': 5}
|