Check if string is a palindrome (case-insensitive).
Implement this function:
def is_palindrome(s: str) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s.
Input
'racecar'
Output
True