Your question is Palindrome Function. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
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):