×

Check Palindrome in Python

Python is an object-oriented high-level programming language. Python has dynamic semantics and has high-level built-in data structures which support dynamic typing and dynamic binding. Python provides rapid development. It has an English-like syntax that is very easy to write and understand which also reduces the maintenance cost. Python is an interpreted language which means that it uses an interpreter instead of the compiler to run the code. The interpreted language is processed at the run time thus takes less time to run. Python also has third parties modules and libraries which encourage development and modifying the code.

Palindrome Overview

In this post, we are going to discuss how to check if a string is a palindrome or not. A palindrome is a set of numbers or characters that reads the same backwards as from forward. When the numbers or characters are reversed, the order remains the same. Some examples of palindromes can be Nitin, 12121, 22/02/2022.

Here Nitin is a palindrome string. A palindrome string is a palindrome of alphabets, i.e. the set of alphabets that remains the same when inverted. They can also be called symmetrical alphabets. In this example, the string is Nitin, and when we reverse it, we will still get Nitin. So it is a palindrome string.

The next example is 12121, which can be considered as a palindrome number. A palindrome number is a set of numbers that remains the same when inverted. When we reverse the number 12121, it turns out to be the exact same number 12121, so 12121 can be called a palindrome number while 12343412 cannot be considered a palindrome.

Some other examples of palindrome are:

123321, Madam, Dad, abc1221cba

In this article, we are going to check if a string is a palindrome or not in Python.

Before writing the actual code itself, it is advised to write the pseudo code or algorithm for the problem. After writing and understanding the algorithm, it becomes very easy to execute the code.

Let us try to write the pseudo code first:

Pseudo Code:

1. Input: String

2. Reverse the string using any method

3. Compare the original string with reversed string

4. If same print yes

5. Else No

We can implement different approaches while reversing the string. One point to note is to make sure to keep the data types of both strings and reversed strings the same while comparing them.

Method 1: Slicing

Our first way to reverse the original string is by using list slicing in Python.With the help of slicing, we can access a range of elements and choose where to start, where to end, and in which order.

# Program to check palindrome

str= input("Enter a string: ")

rev_str = str[::-1]

if rev_str == str:

   print("Yes, It is a palindrome")

else:

   print("No, It is not a palindrome")

Output

Enter a string: madam

Yes, It is a palindrome
Check Palindrome In Python

In this code, we have used slicing; the syntax for the slicing is started:stop:step . We have not passed anything to start and stop, so that it will take the whole string. The step is specified as -1, which means it will process the strip backwards.

Method 2: Recursion

Our next approach to reverse the string is by using recursion. Recursion is a method of solving a problem when the problem is defined in terms of itself.

The code for recursion is:

# Checking palindrome by using recursion

def checkPalindrome(str):

   #to change it the string is similar case

   str = str.lower()

   lth = len(str)

   # if length is less than 2

if lth< 2:

         return True

   #Check if the first and last character is same

   elif str[0] == str[lth - 1]:

         # pass the string without first and last letter

         return checkPalindrome(str[1: lth - 1])

   else:

         return False

# Driver Code

str= input("Enter a string: ")

if checkPalindrome(str):

   print("Yes, It is a palindrome")

else:

   print("No, It is not a palindrome")

Output

Enter a string: 12345abccba54321

Yes, It is a palindrome
Check Palindrome In Python

Method 3: Iteration

In this approach, we are not going to reverse the string, but we will compare the first letter to the last letter. If they are the same, then we will compare the second letter to the second last and so on. We are going to do this till we reach the middle of the string. If any character mismatches, then the string is not a palindrome, and we will break the loop.

# Iterative approach to check palindrome

def checkPalindrome(str):

   # Run loop from 0 to len/2

   lth = int(len(str))

   for i in range(0, lth/2):

         if str[i] != str[lth-i-1]:

               return False

   return True

# Driver Code

str= input("Enter a string: ")

if checkPalindrome(str):

   print("Yes, It is a palindrome")

else:

   print("No, It is not a palindrome")

Output

Enter a string: abcdefgfedcba

Yes, It is a palindrome
Check Palindrome In Python

Method 4: Reversed function

In this method, we are going to reverse the string by using the reversed function with the join() function in Python. Reversed() function returns the reverse iteration of the string. The following python code demonstrates the process to reverse a string and check palindrome:

# Program to check palindrome using reversed function

str= input("Enter a string: ")

rev_str = ''.join(reversed(str))

if rev_str == str:

   print("Yes, It is a palindrome")

else:

   print("No, It is not a palindrome")
Check Palindrome In Python

Note: These codes are case sensitive. If you want to ignore the case, you can convert the original string to either lowercase or uppercase using the .lower() function and then use these codes.


Related Topics

Python Set clear() Method

Python Set clear() Method The set.clear() method removes all the elements from the set. Syntax set.clear() Parameter NA Return None Example 1 # Python program explaining # the set.clear() method # initializing the set fruits = {"watermelon", "banana", "apple"} # printing the set...

2 minutes read.

How to Import Files in Python

Python is an interactive and more accessible language than any other programming language. The python programming language uses a variety of libraries to perform the operations in a faster way....

3 minutes read.

String indices must be integers in Python

Lists, tuples, and strings are examples of iterable objects in Python whose items or characters can be retrieved by their index numbers. For instance, you might take the following action to...

3 minutes read.

Python hasattr() function

Python hasattr() function The hasattr() function in Python returns a Boolean value ‘True’ if the given object has the specified attribute, else it returns False. Syntax hasattr(object, name) Parameter object: it is a required parameter which represents an object. attribute:...

1 minute read.

Create the First GUI Application using PyQt5 in Python

GUI: A graphical user interface, or GUI, is present on most personal computers. It provides a simple experience for individuals with various computing skill levels. GUI apps may take more resources...

3 minutes read.

Python tokens and character set

In this tutorial, we will understand what are character sets used in python and what is meant by python tokens and we will further discuss the type of tokens being...

4 minutes read.

Python Program to Print Sum of all Elements in an Array

Python program to print sum of all elements in an array A set of objects stored in contiguous memory locations is referred to as an array. The concept is to keep...

2 minutes read.

Change Data Type in Python

Python is a dynamic language where it is not always required to consider every variable type. Python supports a wide range of data types, but There are mainly six data...

3 minutes read.

Python Keywords

If you are trying to learn a programming language, you need to have a basic idea of "What are keywords" and "How they are used". You can learn about keywords in...

7 minutes read.

Python range() function

Python range() function The range() function returns a sequence of numbers, starting from 0 by default, and increments by 1 (by default), and ends at a specified number. Syntax range(stop)        or range(start, stop[, step]) Parameter start: It is...

1 minute read.

Check if the directory exists in Python

To prevent any error, while loading or editing a file, we first have to check that the directory or the file exists or not. This is also done to prevent...

5 minutes read.

Word frequency Python

Word frequency Python In this tutorial, we will write the Python program to count the occurrence of a word (word frequency) in a given sentence. We will learn all the approaches...

5 minutes read.

Python dir() function

Python dir() function The dir() function in Python returns all properties and methods of the specified object, without the values. Syntax dir([object]) Parameter object: This parameter represents the object one wants to see the valid attributes. Return This function...

2 minutes read.

Python pow() Function

Python pow() Function The pow() function in Python return the parameter ‘x’ to the power ‘y’ and if the parameter ‘z’ is present, it returns x to the power y, modulo z (computed more efficiently than pow(x, y) % z). Syntax pow(x, y[, z]) Parameter x: This parameter represents the base...

1 minute read.

Python K-Means Clustering

K-Means Clustering is a basic yet incredible calculation in information scienceThere are a plenty of true utilizations of K-Means clustering (a couple of which we will cover here)This far reaching...

25 minutes read.

How to Practice Python Programming

Learning python kkis a step towards coding. Python gets one closer to programming languages. It is essential to practice every programming language to become a professional in coding. It is...

4 minutes read.

Pltpcolor in Python

Python: Python programming language is one of the most used programming languages, as it is used widely in the field of software and data analysis, web development, etc. It is said...

3 minutes read.

Gaussian elimination in python

Linear and polynomial equations are used in almost all fields of numerical simulation. However, its most common use in engineering is in the area of linear system analysis. The broader...

3 minutes read.

Python Set isdisjoint() method

Python Set isdisjoint() method The set.isdisjoint() method in Python returns a boolean value True if two sets are disjoint sets ( i.e. none of the elements are present in both sets), otherwise it returns...

1 minute read.

Python Program to check whether a given number is Armstrong or not

Program to check whether a given number is Armstrong or not A number is said to be an Armstrong if the sum of each digit's cube of a given number equals...

1 minute read.