Skip to content

Instantly share code, notes, and snippets.

@supritashankar
Created May 16, 2014 01:02
Show Gist options
  • Save supritashankar/d6a59f207fa8453418d8 to your computer and use it in GitHub Desktop.
Save supritashankar/d6a59f207fa8453418d8 to your computer and use it in GitHub Desktop.
Best way to reverse a string in python!
def reverse(_string):
return ''.join(reversed(_string))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment