當前位置:成語大全網 - 新華字典 - python 關於列表轉換成字典的問題

python 關於列表轉換成字典的問題

習慣用zip

>>> 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))

{1: 'a', 2: 'b', 3: 'c'}