Write a Python lambda function that checks whether a string is a palindrome or not. A palindrome is a word, phrase, or sequence that reads the same backward as forward. The function should accept a string and return a Boolean.
Example 1:
Input: "radar"
Output: True
Example 2:
Input: "python"
Output: False