一.列表转换为字典:
1.使用zip函数:
a=[‘a1’,'a2','a3’,'a4’]
b=['b1','b2']
d=zip(a,b)
print(dict(d))
2.使用嵌套列表转换为字典:
a = ['a1','a2']
b = ['b1','b2']
c = [a,b]
print (dict(c))
dit ={}
for i inc:
dit ={}
for i in c:
dit[i[0]]=i[1]
print (dit)
一.列表转换为字典:
1.使用zip函数:
a=[‘a1’,'a2','a3’,'a4’]
b=['b1','b2']
d=zip(a,b)
print(dict(d))
2.使用嵌套列表转换为字典:
a = ['a1','a2']
b = ['b1','b2']
c = [a,b]
print (dict(c))
dit ={}
for i inc:
dit ={}
for i in c:
dit[i[0]]=i[1]
print (dit)
本文标题:2019-01-17
本文链接:https://www.haomeiwen.com/subject/xmywdqtx.html
网友评论