I've got a dictionary like:
{ 'a': 6, 'b': 1, 'c': 2 }
I'd like to iterate over it by value, not by key. In other words:
(b, 1)
(c, 2)
(a, 6)
What's the most straightforward way?
|
I've got a dictionary like:
I'd like to iterate over it by value, not by key. In other words:
What's the most straightforward way? |
|||||||||||||||
|
for these of you that hate lambda :-)
However |
|||||||||||
|
|
For non-Python 3 programs, you'll want to use iteritems to get the performance boost of generators, which yield values one at a time instead of returning all of them at once.
For even larger dictionaries, we can go a step further and have the key function be in C instead of Python as it is right now with the lambda.
Hooray! |
|||
|
|
|
The
In Python 3, the lambda expression will have to be changed to |
|||||||||
|
|
Note: 2 years late, so please vote me up if you like this answer :) ... It can often be very handy to use namedtuple. For example, you have a dictionary of name and score and you want to sort on 'score':
sorting with lowest score first:
sorting with highest score first:
The order of 'key' and 'value' in the listed tuples is (value, key), but now you can get the name and score of, let's say the second-best player (index=1) very Pythonically like this:
|
||||
|
|