Your question is Check String Palindrome. 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 reads the same forward and backward, and False otherwise. Implement a function that checks the string exactly as given, including case and all characters.
def is_palindrome(s):