Skip to content

Instantly share code, notes, and snippets.

@greggyNapalm
Created February 12, 2013 10:24
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 greggyNapalm/4761417 to your computer and use it in GitHub Desktop.
Save greggyNapalm/4761417 to your computer and use it in GitHub Desktop.
>>> l = ['red','green','yelow','last']
>>> tmp = l.pop(0)
>>> l[0] = ' '.join([tmp, l[0]])
>>> l
['red green', 'yelow', 'last']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment