Today we are going to share a Python Program to Check if a String is a Palindrome or Not. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python Program to Check if a String is a Palindrome or Not.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 | string=raw_input("Enter string:") if(string==string[::-1]): print("The string is a palindrome") else: print("The string isn't a palindrome") |
Enter string:malayalam
The string is a palindrome
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
Liked this program? Do Like & share with your friends.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.