Skip to content

Instantly share code, notes, and snippets.

@leveled
Created October 19, 2016 00:53
Show Gist options
  • Save leveled/dbb6cbe18fa53cc27b820ffe8ec5c450 to your computer and use it in GitHub Desktop.
Save leveled/dbb6cbe18fa53cc27b820ffe8ec5c450 to your computer and use it in GitHub Desktop.
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