Skip to content

Instantly share code, notes, and snippets.

@jaychoo
Created October 29, 2011 12:45
Show Gist options
  • Save jaychoo/1324410 to your computer and use it in GitHub Desktop.
Save jaychoo/1324410 to your computer and use it in GitHub Desktop.
Python revese string
s = 'abcde'
print s[::-1]
print ''.join(reversed(s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment