Skip to content

Instantly share code, notes, and snippets.

@Rushi98
Created May 15, 2016 07:39
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 Rushi98/89032963473a1a901d5b1235292c234a to your computer and use it in GitHub Desktop.
Save Rushi98/89032963473a1a901d5b1235292c234a to your computer and use it in GitHub Desktop.
def ispalin(x):
return str(x) == str(x)[::-1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment