Skip to content

Instantly share code, notes, and snippets.

@fonnesbeck
Last active December 17, 2015 00:38
Show Gist options
  • Select an option

  • Save fonnesbeck/5521961 to your computer and use it in GitHub Desktop.

Select an option

Save fonnesbeck/5521961 to your computer and use it in GitHub Desktop.
Sort dict by value
aDictionary = {'a':3, 'b':-4, 'c':3.14}
sorted(aDictionary, key=lambda x: aDictionary[x])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment