Write a function that takes a string as input and returns True if it is a palindrome (ignoring spaces, case, and punctuation), otherwise False
Sigiloso
wrote a function that first removes non-alphanumeric characters, converts the string to lowercase, and then checks if it reads the same forward and backward. Here’s my solution in Python