Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I like the python list comprehension operator (or idiom, or whatever it is).

Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values:

mydict = {(k,v) for (k,v) in blah blah blah}  # doesn't work :(
share|improve this question
5  
It's neither "operator" per se, nor "idiom". It's just syntax. You can say "list comprehension syntax". – S.Lott Nov 17 '09 at 13:05
7  
hmm more than 2 years.. but couldn't resist to notice the cruel variable name :( ... – 0xc0de May 16 '12 at 13:07
1  
@0xc0de, care to explain? I did not understand that and I was left quite curious about what you meant. – Francisco P. Aug 14 '12 at 13:07
2  
@FranciscoP. I am talking about using 'dict' as a variable name is not good. It masks the 'dict' keyword which references to a type -dictionary. – 0xc0de Aug 17 '12 at 5:40
1  
@0xc0de - ah! OK. I was confused by your usage of "cruel". – Francisco P. Aug 17 '12 at 15:51
show 1 more comment

3 Answers

up vote 327 down vote accepted

In Python 2.6 (or earlier), use the dict constructor:

d = dict((key, value) for (key, value) in sequence)

In Python 2.7+ or 3, you can just use the dict comprehension syntax directly:

d = {key: value for (key, value) in sequence}
share|improve this answer
5  
You should incorporate the answer from @SilentGhost to point out that dict comprehensions do exist in Python 3. Dive into Python 3 has some examples. – Rodrigue Jun 1 '11 at 13:24
3  
Not just Python 3, 2.7 too. – e-satis Jan 17 '12 at 15:14
24  
answered Nov 17 '09 at 10:09 - Python 2.7 was released on July 3rd, 2010 – fortran Jan 17 '12 at 15:31
1  
You don't define v. Should edit the answer :) – CHM Jul 25 '12 at 21:20
3  
my god python is just freaking awesome. – Kim Jong Woo Apr 7 at 17:58
show 2 more comments

in py3k dict comprehensions work like this:

d = {k:v for k, v in iterable}

in py2k you can use fortran's suggestion.

share|improve this answer
12  
Actually, this style of dict comprehension works in Python 2.7+, not just Python 3. – Adrian Petrescu Jun 24 '11 at 18:18
From what I've experienced you need parenthesis around the k, v like so: (k, v) – yourfriendzak Mar 9 at 18:36

Use python dict comprehensions: Here's the link to know more about it: Dict Comprehensions

share|improve this answer
2  
But the very next sentence notes that "However, Python 3.0 introduces this exact feature, as well as the closely related set comprehensions." So it's a real feature in Python 3, as others have noted. – Jason Creighton May 30 '11 at 16:43

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.