Possible Duplicate:
Python: Sort a dictionary by value
I have a dictionary like this:
A = {'Name1':34, 'Name2': 12, 'Name6': 46,....}
I want a list of keys sorted by the values, i.e. [Name2, Name1, Name6....]
Thanks!!!
I have a dictionary like this:
I want a list of keys sorted by the values, i.e. Thanks!!! |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Use
|
|||||||||||||
|
|
This sorts the keys, and for each key, uses |
|||||||
|
|
I'd use:
The |
|||||||||||
|