Python program to check whether a string is palindrome or not

 

Python program to check whether a string is palindrome or not


def rev(inputString): return inputString[::-1] def isPalindrome(inputString): reverseString = rev(inputString) if (inputString == reverseString): return True return False s = input("Enter a string: ") result = isPalindrome(s) if result == 1: print("The string is palindrome") else: print("The string is not palindrome")

Comments