Answers for "fastest way to check for scatter palindrome python"

1

palindrome checker python

value = input("Enter a Word: ")

if value == value[::-1] :
    print(value)
    print(value[::-1])
    print("THIS WORD IS A PALINDROME")
else :
    print(value)
    print(value[::-1])
    print("THIS WORD IS NOT A PALINDROME")
Posted by: Guest on August-03-2021

Code answers related to "fastest way to check for scatter palindrome python"

Python Answers by Framework

Browse Popular Code Answers by Language