Skip to content

Instantly share code, notes, and snippets.

@killown
Last active April 2, 2017 17:01
Show Gist options
  • Save killown/e6608dc9fd51e80e614fa8d20cb39fe0 to your computer and use it in GitHub Desktop.
Save killown/e6608dc9fd51e80e614fa8d20cb39fe0 to your computer and use it in GitHub Desktop.
Sort Dict
#!/usr/bin/env python3
import operator
x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0}
sorted_x = sorted(x.items(), key=operator.itemgetter(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment