Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Imagine that you have:

keys = ('name', 'age', 'food')
values = ('Monty', 42, 'spam')

What is the simplest way to produce the following dictionary ?

dict = {'name' : 'Monty', 'age' : 42, 'food' : 'spam'}

This code works, but I'm not really proud of it :

dict = {}
junk = map(lambda k, v: dict.update({k: v}), keys, values)
share|improve this question
A more "Pythonic" way to do map() is with list or generator comprehensions. Not necessary in this case, but keep it in mind. – Dan Oct 16 '08 at 19:38

6 Answers

up vote 186 down vote accepted

Like this:

>>> keys = ['a', 'b', 'c']
>>> values = [1, 2, 3]
>>> dictionary = dict(zip(keys, values))
>>> print dictionary
{'a': 1, 'b': 2, 'c': 3}

Voila :-) The pairwise dict constructor and zip function are awesomely useful: http://www.python.org/doc/2.5.2/lib/built-in-funcs.html#dict

share|improve this answer
1  
Nice! I love it when a little piece of code makes me go "Ah-ha!" and puts a smile on my face... – Kevin Little Oct 16 '08 at 20:22
And thus begins the process of reshaping your brain to think "Pythonically", my young Padawan :-p – Dan Oct 16 '08 at 20:25
7  
If the lists of keys and values are long, then itertools.izip or a generator expression should be used to avoid the resource cost of building a third list. – David Eyk Oct 16 '08 at 21:04
David, it's a good point. zip() is a bad idea with very long lists. Mike Davis's solution below uses izip() to avoid excessive copying and memory usage. For short lists, I don't worry. – Dan Oct 16 '08 at 21:15
1  
As a note coming to this years after it was posted, remember in 3.x, zip() is lazy (which means in 3.x, there is no need to worry about itertools.izip() - which doesn't exist any more). – Lattyware Mar 29 at 20:40

Try this:

>>> import itertools
>>> keys = ('name', 'age', 'food')
>>> values = ('Monty', 42, 'spam')
>>> adict = dict(itertools.izip(keys,values))
>>> adict
{'food': 'spam', 'age': 42, 'name': 'Monty'}

It was the simplest solution I could come up with.

--Mike Davis

PS It's also more economical in memory consumption compared to zip.

share|improve this answer
You're not actually using itertools here. – Kirk Strauser Oct 16 '08 at 19:18
You've managed to overwrite the builtin dict type so your example will only work once in program. – David Locke Oct 16 '08 at 19:21
1  
My rust is showing.... Thanks for the edits and comments. – Mike Davis Oct 16 '08 at 21:29
Very helpful answer. Thanks. – octopusgrabbus Jul 26 '12 at 21:10
>>> keys = ('name', 'age', 'food')
>>> values = ('Monty', 42, 'spam')
>>> dict(zip(keys, values))
{'food': 'spam', 'age': 42, 'name': 'Monty'}
share|improve this answer

You can also use dictionary comprehensions in Python ≥ 2.7:

>>> keys = ('name', 'age', 'food')
>>> values = ('Monty', 42, 'spam')
>>> {k: v for k, v in zip(keys, values)}
{'food': 'spam', 'age': 42, 'name': 'Monty'}
share|improve this answer
2  
+1 for teaching me some new syntax. Very nice. – Phil H Jun 10 '12 at 20:36

If you need to transform keys or values before creating a dictionary then a generator expression could be used. Example:

>>> adict = dict((str(k), v) for k, v in zip(['a', 1, 'b'], [2, 'c', 3]))

Take a look Code Like a Pythonista: Idiomatic Python.

share|improve this answer
why coerce the key into a string? – user102008 Mar 4 '11 at 7:37
2  
@user102008: note the first words in the answer are: "If you need to transform keys". – J.F. Sebastian Mar 4 '11 at 8:37

For those who need simple code and aren’t familiar with zip:

List1 = ['This', 'is', 'a', 'list']
List2 = ['Put', 'this', 'into', 'dictionary']

This can be done by one line of code:

d = {List1[n]: List2[n] for n in range(len(List1))}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.