Write palindrome.py with def is_palindrome(s: str) -> bool that returns True when the string reads the same backwards and forwards, ignoring case and spaces.
