In[53]: a=[1,2,3]
In[54]: b=[4,5,6]
In[54]: b=[4,5,6]
In[55]: c=zip(a,b)
In[57]: d={i:j for i,j in c}
In[58]: d
Out[58]:
{1: 4, 2: 5, 3: 6}