A palindrome is a word that is identical forward and backwards.
Given a word, create a function that checks whether it is a palindrome.
is_palindrome("mom") ➞ true
is_palindrome("scary") ➞ false
is_palindrome("reviver") ➞ true
is_palindrome("stressed") ➞ falseAll test input is lower cased.