def is_palindrome(string): sage = "True" if string[:] == string[::-1] else "False" print(sage)