I need to sort a dictionary based on the keys, and then return the values associated with those keys.
ages = {40 : 'mother', 38 : 'father', 17 : 'me'}
['me', 'father', 'mother'] # Should return this
What is the fastest possible way of doing this (performance is really an issue for me, as the sorting gets called thousands of times throughout my code).
Thank you very much!
:to separate key:value. – kev Oct 14 '12 at 11:29