Python - Como verificar se uma string é um palíndromo
word = input() if str(word) == str(word)[::-1] : print("Palindrome") else: print("Not Palindrome")
thecodeteacher