How to check whether a string is a palindrome, ignoring spaces and case in Python

1 Answer

0 votes
import re

def is_palindrome(s):
    # Normalize the string: remove spaces and convert to lowercase
    normalized_str = re.sub(r'\s+', '', s).lower()

    # Reverse the normalized string and compare
    return normalized_str == normalized_str[::-1]

print(f'Is palindrome: {is_palindrome("A man a plan a canal Panama")}')
print(f'Is palindrome: {is_palindrome("abcDefg")}')



'''
run:

Is palindrome: True
Is palindrome: False

'''

 



answered May 16, 2025 by avibootz
...