Skip to content

Instantly share code, notes, and snippets.

@xkumiyu
Created March 20, 2020 17:33
Show Gist options
  • Save xkumiyu/129becc88f44ce3004c8c245fecafca7 to your computer and use it in GitHub Desktop.
Save xkumiyu/129becc88f44ce3004c8c245fecafca7 to your computer and use it in GitHub Desktop.
# sort, lambda
A.sort(key=lambda x: x[1])
# sort, itemgetter
from operator import itemgetter
A.sort(key=itemgetter(1))
# sorted, lambda
A = sorted(A, key=lambda x: x[1])
# sorted, itemgetter
from operator import itemgetter
A = sorted(A, key=itemgetter(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment