Your question is Palindrome Function Implementation. 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.
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):