Skip to content

Instantly share code, notes, and snippets.

@bryanyang0528
Created July 3, 2014 15:29
Show Gist options
  • Save bryanyang0528/7ea304c86e6d2e071a07 to your computer and use it in GitHub Desktop.
Save bryanyang0528/7ea304c86e6d2e071a07 to your computer and use it in GitHub Desktop.
>>> s = list("Hello zorld")
>>> s
['H', 'e', 'l', 'l', 'o', ' ', 'z', 'o', 'r', 'l', 'd']
>>> s[6] = 'W'
>>> s
['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']
>>> "".join(s)
'Hello World'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment