This is a simple Python program that checks whether a word or string is a palindrome or not. A palindrome is a word that reads the same forward and backward.
Example:
- madam
- level
- radar
The program takes input from the user and compares the string with its reverse.
- Python
Bhagyashri Gawali