Skip to content

Instantly share code, notes, and snippets.

@KartikTalwar
Created January 18, 2012 01:18
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 KartikTalwar/1630178 to your computer and use it in GitHub Desktop.
Save KartikTalwar/1630178 to your computer and use it in GitHub Desktop.
Python Palindrome Checker
def isPalindrome(input):
return input == input[::-1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment