vote up 11 vote down star
3

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

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

4 Answers

vote up 23 vote down check

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

link|flag
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
1  
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
vote up 7 vote down

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.

link|flag
You're not actually using itertools here. – Just Some Guy 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
My rust is showing.... Thanks for the edits and comments. – Mike Davis Oct 16 '08 at 21:29
vote up 6 vote down
>>> keys = ('name', 'age', 'food')
>>> values = ('Monty', 42, 'spam')
>>> dict(zip(keys, values))
{'food': 'spam', 'age': 42, 'name': 'Monty'}
link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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