Skip to content

Instantly share code, notes, and snippets.

@sdfsdhgjkbmnmxc
Created February 15, 2013 12:45
Show Gist options
  • Save sdfsdhgjkbmnmxc/4960189 to your computer and use it in GitHub Desktop.
Save sdfsdhgjkbmnmxc/4960189 to your computer and use it in GitHub Desktop.
>>>
>>> s = "happy new year"
>>> s[1]
'a'
>>> s[1:]
'appy new year'
>>> s[5:]
' new year'
>>> s[5:7]
' n'
>>> s[:7]
'happy n'
>>> s[:-1]
'happy new yea'
>>> s[::2]
'hpynwya'
>>> s[::-1]
'raey wen yppah'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment