d = { 'a':{'k':1, 'b':'whatever'}, 'b':{'k':2, 'b':'sort by k'} }
Want to sort this dictionary by k as descending order, in python.
Little tricky, please help.
Want to sort this dictionary by k as descending order, in python. Little tricky, please help. |
||||
|
|
|
This excellent mini-howto explains the use of the |
|||||||||||||||
|
Ordered dictionaries are just like regular dictionaries but they remember the order that items were inserted. When iterating over an ordered dictionary, the items are returned in the order their keys were first added. From the example
For trying to achieve something of the same effect for python 2.4 or lower, see:
|
|||||
|
|
Dictionaries are not "sorted". That isn't a meaningful concept. The keys and values are not, conceptually, in any "order" at all, so you can't change what order they're in. |
|||||||
|