今天爱分享给大家带来python如何映射两个列表成为一个字典【面试题详解】,希望能够帮助到大家。
两个列表
keys = ('name', 'age', 'food') values = ('Monty', 42, 'spam')
如何得到
dict = {'name' : 'Monty', 'age' : 42, 'food' : 'spam'}
使用zip
>>> keys = ['a', 'b', 'c'] >>> values = [1, 2, 3] >>> dictionary = dict(zip(keys, values)) >>> print dictionary {'a': 1, 'b': 2, 'c': 3}