A common question in junior Python interviews.
Check if a string is a palindrome.
Additional conditions also apply.
1. Remove all characters from the string that are not ASCII alphabetic or numeric.
2. Convert the string to lowercase.
This question is interesting because it quickly demonstrates your fundamental knowledge.
#python #programming #palindrome