Python program to check if a string is palindrome or not


Given a string, our task is to check weather this string is palindrome or not.

Algorithm

Step1: Enter string as an input.
Step2: Using string slicing we reverse the string and compare it back to the original string.
Step3: Then display the result.

Example code

my_string=input("Enter string:")
if(my_string==my_string[::-1]):
   print("The string is a palindrome")
else:
   print("The string isn't a palindrome")

Output

Enter string:madam
The string is a palindrome
Enter string:python
The string isn't a palindrome

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 26-Jun-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements