News

A palindrome is a word, phrase, or sequence that reads the same backward as forwards. For example, the word- madam If you read it backward it will be madam as well. Similarly, eye, rotor, kayak, ...
Exercise 5: Check for Palindrome Write a Python function called is_palindrome that takes a string as input and returns True if the string is a palindrome, and False otherwise. A palindrome is a word, ...