字典创建方式 第一种(利用zip函数): print(dict(zip(list1,list2))) 第二种(利用dict直接创建): dict(a=1,b=2,c=3)
print(dict(zip(list1,list2)))
dict(a=1,b=2,c=3)