Computer Science, asked by shiv9786, 9 months ago

write a python program to read a number from the user and check whether it is a palindrome or not.

pls notice it is a number not a string.​

Answers

Answered by appunnisarath34
1

Answer:

n=int(input("Enter 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!")

Similar questions