Answers for "recursive to check palindrome in python"

0

check palindrome in python using recursion

def isPalindrome(string):
  	#termination condition: the string is one character or less
    if (len(string) <= 1):
        return True
    if (string[0] == string[-1]):
        return isPalindrome(string[1:-1])
    else:
        return False
Posted by: Guest on July-09-2021

Code answers related to "recursive to check palindrome in python"

Python Answers by Framework

Browse Popular Code Answers by Language