7.9 LAB: Palindrome
A palindrome is a word or a phrase that is the same when read both forward and backward. Examples are: "bob," "sees," or "never odd or even" (ignoring spaces). Write a program whose input is a word or phrase, and that outputs whether the input is a palindrome.
Ex: If the input is:
the output is:
Hint: Start by removing spaces. Then check if a string is equivalent to it's reverse.
Use Python, please.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here