Instagram
youtube
Facebook
Twitter

Check if a String is a Palindrome

A Python program to check if a given string is a palindrome by reversing and comparing it.

Code Explanation in Points:

  1. Take Input: Get a string from the user and store it in string.
     
  2. Reverse the String: Use string[::-1] to get the reversed string.
     
  3. Check Equality: Compare the original string with its reversed version.
     
  4. Print Result:
     
    • If both are equal → Palindrome
       
    • If not equal → Not a Palindrome
       

Program:

string = input("Enter a string: ")

if string == string[::-1]:  

    print("The given string is a Palindrome.")  

else:  

    print("The given string is NOT a Palindrome.")