Python - Cómo verificar si una cadena es un palíndromo
word = input() if str(word) == str(word)[::-1] : print("Palindrome") else: print("Not Palindrome")
thecodeteacher