Given a string s, return True if it is a palindrome and False otherwise. A palindrome reads the same from left to right and right to left.
For this problem, compare characters exactly as they appear, including spaces, punctuation, and letter case.
ss is a palindromedef is_palindrome(s):