Skip to content

Instantly share code, notes, and snippets.

@audy
Created July 7, 2010 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save audy/467348 to your computer and use it in GitHub Desktop.
Save audy/467348 to your computer and use it in GitHub Desktop.
def function(argument1, argument2):
print argument1,
print argument2[::-1]
function('Austin','sivaD')
@audy
Copy link
Author

audy commented Jul 7, 2010

this will print:
Austin
Davis

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment