In today’s tutorial, we are going to share a Python program to check whether a number 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 whether a number is a palindrome or not.
Copy the below python program and execute it with the help of python compiler. At the end of this tutorial, We have shared the output of below program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | n=int(input("Enter a number: ")) temp=n rev=0 while(n>0): dig=n%10 rev=rev*10+dig n=n//10 if(temp==rev) { print("The number is a palindrome!") }else { print("The number isn't a palindrome!") } |
Enter number: 121
The number is a palindrome!
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.