- Get link
- X
- Other Apps
How to Check a Number is Palindrome or not in Python?
As kids, it was fun reading reverse strings and when we grew up a little we learned that strings reading same either ways are called palindromes. Curiosity dint leaves us there, so we wanted our machines to learn what are palindromes and for all Python lovers, no other language can do it in a better way. If you are a python lover and a coding enthusiast, read along to learn how to create a Palindrome in Python.
What is a Palindrome?
A palindrome is nothing but any number or a string which remains unaltered when reversed.
Example: 12321
Output: Yes, a Palindrome number
Example: RACECAR
Output: Yes, a Palindrome string
It is evident that letters form mirror images on reversal.
Now that you understood the concept, let’s simply dive into a program to check palindrome in Python.
Data Science with Python Certification Course
Find out our Python Training in Top Cities/Countries
Palindrome Program using While Loop
This is one of the easiest programs to find Palindrome program using while loop in Python Programming. Let’ dive into an example to check whether a given input is a palindrome or not.
1 2 3 4 5 6 7 8 9 10 11 | num = int ( input ( "Enter a number:" )) temp = num rev = 0 while (num> 0 ): dig = num % 10 rev = rev * 10 + dig num = num / / 10 if (temp = = rev): print ( "The number is palindrome!" ) else : print ( "Not a palindrome!" ) |
Output:
Enter a number:121
The number is palindrome!
Moving ahead in Python palindrome program examples, let’s us see how to check a string whether its a palindrome or not using built-in functions.
Data Science Training
Palindrome Program( String) using inbuilt Method
1 2 3 4 5 | string = input (( "Enter a string:" )) if (string = = string[:: - 1 ]): print ( "The string is a palindrome" ) else : print ( "Not a palindrome" ) |
Output:
Explanation: In the above program, first take input from the user (using input OR raw_input() method) to check for palindrome. Then using slice operation [start:end:step], check whether the string is reversed or not. Here, step value of -1 reverses a string. If yes, it prints a palindrome else, not a palindrome.
Make sure you practice as much as possible and revert your experience.
Got a question for us? Please mention it in the comments section of this “Palindrome program in Python” blog and we will get back to you as soon as possible, or you can join our Data Science with Python Course.
Data Science with Python Certification Course
Weekday / Weekend BatchesTo get in-depth knowledge of Python and its various applications, you can enroll for live Python Training with 24/7 support and lifetime access.
Discover your full abilities in becoming an AI and ML professional through our Artificial Intelligence Course. Learn about various AI-related technologies like Machine Learning, Deep Learning, Computer Vision, Natural Language Processing, Speech Recognition, and Reinforcement learning.
Course Name | Date | |
---|---|---|
Data Science with Python Certification Course | Class Starts on 29th October,2022 SAT&SUN (Weekend Batch) | View Details |
Data Science with Python Certification Course | Class Starts on 26th November,2022 SAT&SUN (Weekend Batch) | View Details |
Comments
Post a Comment