PYTHON Palindrome Checker

 s=input("Enter Value or String :")
if (s==s[::-1]) :
    print(s, "is a Palindrome.")
else:
        print(s, "is NOT a Palindrome.")

 

Popular posts from this blog

HTML Form With All Data Entry Types