dict() 函数用于创建一个字典。
dict 语法:
class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg)
参数说明:
返回一个字典。
以下实例展示了 dict 的使用方法:
Python dict() 函数
原文:https://www.cnblogs.com/mariobear/p/9069481.html