Palindrome word checker.
Welcome to palindrome word checker
This is checking user input the word it is palindrome or not.
Palindrome mean=> word right to left or left to right is same word Ex=> Nitin, Oo, Level, etc.
a=str(input("Enter the palindrome:"))
b=a[::-1]
if a.lower()==b.lower():
print("This is palindrome")
else:
print("This is not palindrome")
Comments