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 :(
|
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:
|
||||
| show 1 more comment |
|
In Python 2.6 (or earlier), use the dict constructor:
In Python 2.7+ or 3, you can just use the dict comprehension syntax directly:
|
|||||||||||||||||||||
|
|
in py3k dict comprehensions work like this:
in py2k you can use fortran's suggestion. |
|||||||
|
|
Use python dict comprehensions: Here's the link to know more about it: Dict Comprehensions |
|||||
|
|
In fact, you don't even need to iterate over the iterable if it already comprehends some kind of mapping, the dict constructor doing it graciously for you:
|
|||
|
|
type-dictionary. – 0xc0de Aug 17 '12 at 5:40