word = input( "Enter your Potenial Palindrome:" ) back = word[::-1] if back == word: print(word, "is a Palindrome!") else: print(word, "is not a Palindrome.")