Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created December 7, 2023 09:24
Show Gist options
  • Save stephengruppetta/bc9ac04d672c439a995b05aee0b49ce1 to your computer and use it in GitHub Desktop.
Save stephengruppetta/bc9ac04d672c439a995b05aee0b49ce1 to your computer and use it in GitHub Desktop.
some_names = [
"Robert",
"Ishaan",
"Max",
"Trevor",
"Alexandra",
"Albert",
"Christine",
]
reordered_names = sorted(some_names, key=len)
print(*reordered_names, sep="\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment