dict函数是python的内置函数
其主要作用是从其他映射或键-值对序列创建字典
示例代码如下:
item_1 = [("a",1),("b",2)]
d1 = dict(item_1)
print(d1)
#{'a': 1, 'b': 2}
item_2 = [("a",1),("b",(2,8))]
d2 = dict(item_2)
print(d2)
#{'a': 1, 'b': (2, 8)}
#使用关键字参数调用该函数
d3 = dict(a = 1,b =1)
print(d3)
#{'a': 1, 'b': 1}
当没有为dict提供任何实参时,将返回一个空字典