Skip to content

Instantly share code, notes, and snippets.

@kcarnold
Created May 13, 2020 16:02
Show Gist options
  • Save kcarnold/e5494fe12f1bf78d93c8b9bbd123d14f to your computer and use it in GitHub Desktop.
Save kcarnold/e5494fe12f1bf78d93c8b9bbd123d14f to your computer and use it in GitHub Desktop.
Sort a list of names alphabetically by last name (from clipboard)
print(
', '.join(
sorted(
subprocess.check_output('pbpaste').decode('utf-8').split('\n'),
key=lambda name: name.split()[-1])
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment