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

Let's say I have a list a in Python whose entries conveniently map to a dictionary. Each even element represents the key to the dictionary, and the following odd element is the value

for example,

a = ['hello','world','1','2']

and I'd like to convert it to a dictionary b, where

b['hello'] = 'world'
b['1'] = '2'

What is the syntactically cleanest way to accomplish this?

share|improve this question

4 Answers

up vote 45 down vote accepted
b = dict(zip(a[0::2], a[1::2]))

If a is large, you will probably want to do something like the following, which doesn't make any temporary lists like the above.

from itertools import izip
i = iter(a)
b = dict(izip(i, i))

In Python 3 you could also use a dict comprehension, but ironically I think the simplest way to do it will be with range() and len(), which would normally be a code smell.

b = {a[i]: a[i+1] for i in range(0, len(a), 2)}

So the iter()/izip() method is still probably the most Pythonic in Python 3, although as EOL notes in a comment, zip() is already lazy in Python 3 so you don't need izip().

i = iter(a)
b = dict(zip(i, i))

If you want it on one line, you'll have to cheat and use a semicolon. ;-)

share|improve this answer
+1 - very nice, indeed. – duffymo Jan 1 '11 at 22:39
2  
… or simply zip(i, i), in Python 3, since zip() now returns an iterator. – EOL Jan 2 '11 at 0:07
1  
Note that Python 2.7.3 also has dict comprehension – user1438003 Aug 22 '12 at 11:53

May not be the most pythonic, but

>>> b = {}
>>> for i in range(0, len(a), 2):
        b[a[i]] = a[i+1]
share|improve this answer
9  
read about enumerate – SilentGhost Jan 1 '11 at 22:34
5  
enumerate doesn't let you specify a step size, but you could use for i, key in enumerate(a[::2]):. Still unpythonic since the dict constructor can do most of the work here for you – gnibbler Jan 1 '11 at 22:42
@SilentGhost, gnibbler: thanks so much for broadening my horizons! I'll be sure to incorporate it as much as possible in the future! – sahhhm Jan 1 '11 at 23:35
@gnibbler: Could you explain a little more about how the for i, key in enumerate(a[::2]): approach might work? The resulting pair values would be 0 hello and 1 1, and it's unclear to me how to use them to produce {'hello':'world', '1':'2'}. – martineau Jan 29 '11 at 14:59
1  
@martineau, you are correct. I think i must have meant enumerate(a)[::2] – gnibbler Jan 29 '11 at 22:32

Another option (courtesy of Alex Martelli http://stackoverflow.com/a/2597178/104264):

dict(x[i:i+2] for i in range(0, len(x), 2))

Also if you have this:

a = ['bi','double','duo','two']

and you want this (each element of the list keying a given value (2 in this case)):

{'bi':2,'double':2,'duo':2,'two':2}

you can use:

>>> dict((k,2) for k in a)
{'double': 2, 'bi': 2, 'two': 2, 'duo': 2}
share|improve this answer
best answer thanks – ucefkh May 4 at 15:41

I am not sure if this is pythonic, but seems to work

def alternate_list(a):
   return a[::2], a[1::2]

key_list,value_list = alternate_list(a)
b = dict(zip(key_list,value_list))
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.