City National Bank uses validation rules for certain internal reference labels. Write a function that returns whether a label is a palindrome, meaning it reads the same from left to right and right to left.
Compare characters exactly as provided. Letter case, spaces, punctuation, and digits are significant. For example, "Level" is not a palindrome because L and l differ.
Implement is_palindrome(text).
text, a string containing zero or more characters.true if text is a palindrome, otherwise return false.def is_palindrome(text):