Skip to content

Instantly share code, notes, and snippets.

@palawer
Created October 29, 2015 08:12
Show Gist options
  • Select an option

  • Save palawer/329bdc1eac80f1140aee to your computer and use it in GitHub Desktop.

Select an option

Save palawer/329bdc1eac80f1140aee to your computer and use it in GitHub Desktop.
Sort dictionary by value
ordered_dict = sorted(dictionary.items(), key=lambda x:x[1], reverse=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment