Question:
Write a function named palindrome that takes a string as an argument and returns the boolean True if the string is a palindrome and False otherwise.
For example:
s_one = "A man, a plan, a canal, Panama!"
s_two = "The cat, quickly, ran under the tabl"
check = palindrome(s_one) # the function retu
check = palindrome(s_two) # the function retu