You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""""## Create a function named is_palindrome that takes a string parameter text and returns True if the text is a palindrome, otherwise False.
- Input: is_palindrome("radar")
- Output: True
- Note: A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.Example: "radar" is a palindrome because it reads the same forward and backward.