Skip to content

Instantly share code, notes, and snippets.

@nickysemenza
Last active August 29, 2015 14:05
Show Gist options
  • Save nickysemenza/f80a17b9ec3a8829365b to your computer and use it in GitHub Desktop.
Save nickysemenza/f80a17b9ec3a8829365b to your computer and use it in GitHub Desktop.
palindrome
def isPalindrome(input):
return str(input)==str(input)[::-1]
print isPalindrome("abcba")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment