def is_palindrome(s): string = s if (string==string[::-1]): print("The string IS a palindrome") else: print("The string is NOT a palindrome") return