CGI Advantage integrations may receive identifiers and messages containing punctuation, spacing, and inconsistent capitalization. Implement a function that determines whether the meaningful characters form a palindrome.
A string is a palindrome when it reads identically from left to right and right to left after ignoring every non-alphanumeric character and treating uppercase and lowercase letters as equivalent.
Given a string s, return a boolean:
True if the normalized string is a palindrome.False otherwise.def is_palindrome(s):