說我有兩個列表。通過Python中的循環遍歷鍵和值到字典3.3
>>> List1 = ['This', 'is', 'a', 'list']
>>> list2 = ['Put', 'this', 'into', 'dictionary']
>>> d = {}
我怎麼會用一個循環,使列表1鍵和列表2的值,使每個索引將自己存入字典,所以作爲一個例子...
>>> d = {'This': 'Put', 'is': 'this', 'a': 'into', 'list': 'dictionary'}
http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python –
你知道'zip'嗎?如果是這樣,這是微不足道的。如果沒有,請閱讀[文檔](http://docs.python.org/3/library/functions.html#zip),然後它是微不足道的。 – abarnert