top of page
Subham Das

Palindrome Number

A palindromic number or numeral palindrome is a number that remains the same when its digits are reversed. That means if any number is reversed or we arrange the numbers in opposite order then will be same as it is. Or we can also say that number is symmetrical. Example: 131,16461 etc. We can observe that they are symmetrical.


For extracting any digits from a number, we need to divide the number with 10 and the remainder will be the last digit of that number. In these way can extract any digit from any number.


# Program to check a number is palindrome or not.

num = eval(input("Enter Number:"))

# Storing the number 'num' in a another variable.

n = num

num1 = 0

while n ! = 0 :

rem = n%10

n = n//10

# Here we are storing the reverse number in 'num1'.

num1 = num1 * 10 + rem

if num == num1 :

print("Pallindrome Number")

else :

print("Not a Pallindrome Number")






33 views3 comments

Recent Posts

See All

Magic Number

It is a composite number whose sum of the digits is 10. If we extract the digits from the number then the sum of these digits will be 10....

Prime Number or Not

This program checks a number is mathematically prime or not. It is a optimize program to check a number is prime number or not. # Program...

3 Comments


Veerja Singh
Veerja Singh
Feb 12

Don't let your gold collect dust – trade it in for instant cash with our service. Cash for Gold

Like

terainfo04
Dec 09, 2023

The way you connect seemingly unrelated topics is impressive. It shows a deep understanding of the interconnectedness of knowledge. Toilet Cubicle Nylon Reflective surfaces for enhanced lighting and visibility within restroom areas.

Like

aruuvijay27
Nov 22, 2023

An Interior Design Contractor is a professional or firm specializing in the execution and implementation of interior design projects. Unlike traditional interior designers who focus primarily on conceptualizing and planning, an Interior Design Contractor takes on a more hands-on role in turning design visions into reality. This role involves coordinating and overseeing the construction, remodeling, or renovation of interior spaces, ensuring that the design concepts are brought to life with precision and efficiency. Nasha Mukti Kendra in DelhiRehabilitation Centre in DelhiDe Addiction Centre in DelhiNasha Mukti Kendra in NoidaRehabilitation Centre in NoidaDe Addiction Centre in NoidaNasha Mukti Kendra in FaridabadRehabilitation Centre in FaridabadDe Addiction Centre in FaridabadNasha Mukti Kendra in GurgaonRehabilitation Centre in GurgaonDe Addiction Centre in GurgaonNasha Mukti Kendr…

Like
logo12.PNG
bottom of page