Python - Comment vérifier si une chaîne est un palindrome
word = input() if str(word) == str(word)[::-1] : print("Palindrome") else: print("Not Palindrome")
thecodeteacher