Python内置函数01---dict函数
1.描述
dict()函数用于创造一个字典。
2.语法
class dict(**kwarg)
class dict(mapping, **kwarg)
class dict(iterable, **kwarg)
**kwargs – 关键字
mapping – 元素的容器。
iterable – 可迭代对象。
3.返回值
返回一个字典。
4.实例
(1)直接创造字典,有两种办法:
dict01 ...
原创
2020-02-23 19:10:53 ·
288 阅读 ·
0 评论