>>> l1=[1,2,3]
>>> l2=['a','b','c']
>>> dict(zip(l1,l2))
{1: 'a', 2: 'b', 3: 'c'}
=======================
樓上的map(None,)在python3下已經失效了
===============
py3的map版
>>> dict(map(lambda x,y:[x,y], l1,l2))