Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created May 15, 2014 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/6345f0c2f106a7580384 to your computer and use it in GitHub Desktop.
Save hanksudo/6345f0c2f106a7580384 to your computer and use it in GitHub Desktop.
Sort list by key
from operator import itemgetter
newList = sorted(listToSort, key=itemgetter('key'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment