Answers for "how to check if it is palindrome python"

1

palindrome words python

mes=input("Enter the word and see if it is palindrome ")
if mes==mes[::-1]:
    print("This word is palindrome")
else:
    print("This word is not palindrome")
Posted by: Guest on July-30-2020

Code answers related to "how to check if it is palindrome python"

Python Answers by Framework

Browse Popular Code Answers by Language