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') ]
|
If I have a dictionary like:
How can I convert it to this?
And how can I convert it to this?
| |||
|
feedback
|
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() In Python 3.x, you would not use | |||||||||||||||||
feedback
|
|
since no one else did, I'll add py3k versions:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
What you want is
| |||
|
feedback
|
and
| |||
feedback
|
>>> 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')]
| ||||
|
feedback
|
|
Note: 2 years late, so please vote me up if you like this suggestion :) ... Create a list of namedtuples It can often be very handy to use namedtuple. For example, you have a dictionary of 'name' as keys and 'score' as values like:
You can list the items as tuples, sorted if you like, and get the name and score of, let's say the player with the highest score (index=0) very Pythonically like this:
How to do this: list in random order or keeping order of collections.OrderedDict:
in order, sorted by value ('score'):
sorted with lowest score first:
sorted with highest score first:
| ||||
|
feedback
|