Skip to content

Instantly share code, notes, and snippets.

@8maki
Created October 4, 2011 11:52
Show Gist options
  • Save 8maki/1261451 to your computer and use it in GitHub Desktop.
Save 8maki/1261451 to your computer and use it in GitHub Desktop.
sort_dict_by_value
for k, v in sorted(d.items(), key=lambda x:x[1]):
print k, v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment