Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Everfighting/da0cd8ffc593c32ec9ea818b92f7612c to your computer and use it in GitHub Desktop.
Save Everfighting/da0cd8ffc593c32ec9ea818b92f7612c to your computer and use it in GitHub Desktop.
>>>s = ['variable1 (name3)', 'variable2 (name2)', 'variable3 (name1)']
>>> s.sort(key = lambda x: x.split()[1])
>>> s
['variable3 (name1)', 'variable2 (name2)', 'variable1 (name3)']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment