If I have a dictionary like:
{ 'a': 1, 'b': 2, 'c': 3 }
How can I convert it to this?
[ ('a', 1), ('b', 2), ('c', 3) ]
And how can I convert it to this?
[ (1, 'a'), (2, 'b'), (3, 'c') ]
|
1
|
If I have a dictionary like:
How can I convert it to this?
And how can I convert it to this?
|
||
|
|
|
|
It's not in the order you want, but dicts don't have any specific order anyway. Sort it or organize it as necessary. See: items(), iteritems() |
||||||||
|
|
|
You can use the use list comprehensions.
will get you [ ('a', 1), ('b', 2), ('c', 3) ] and
the other example. Read more about list comprehensions if you like, it's very interesting what you can do with them. |
||
|
|
|
|
since no one else did, I'll add py3k versions:
|
||
|
|
|
|
What you want is
|
||
|
|
|
|
and
|
||
|
|
|
>>> a={ 'a': 1, 'b': 2, 'c': 3 }
>>> [(x,a[x]) for x in a.keys() ]
[('a', 1), ('c', 3), ('b', 2)]
>>> [(a[x],x) for x in a.keys() ]
[(1, 'a'), (3, 'c'), (2, 'b')]
|
|||
|
|