palindrome_checker = lambda s: True if s==s[::-1] else False print(palindrome_checker("lick")) print(palindrome_checker("kayak"))