Python - So überprüfen Sie, ob eine Schnur ein Palindrom ist
word = input() if str(word) == str(word)[::-1] : print("Palindrome") else: print("Not Palindrome")
thecodeteacher