open_in_new
content_copy
def isWordPalindrome(word): print(word[-1:0]) return word == word[::-1]