This commit is contained in:
Ujjwal-Bajpayee 2024-11-18 20:15:36 -03:00 committed by GitHub
commit 6ae4b0e44f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,13 @@
def is_palindrome(input_value):
# Convert the input to a string and remove spaces and special characters (for phrases)
sanitized_value = "".join(filter(str.isalnum, str(input_value))).lower()
# Check if the sanitized string is equal to its reverse
return sanitized_value == sanitized_value[::-1]
input_value = input("Enter a phrase, word, or number to check if it's a palindrome: ")
if is_palindrome(input_value):
print("The input is a palindrome.")
else:
print("The input is not a palindrome.")