Skip to content

Instantly share code, notes, and snippets.

@chancez
Created July 21, 2012 19:15
Show Gist options
  • Save chancez/3156875 to your computer and use it in GitHub Desktop.
Save chancez/3156875 to your computer and use it in GitHub Desktop.
#! /urs/bin/env python
import sys
def reverse_word(aWord):
return aWord[::-1]
print reverse_word(sys.argv[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment