Computer Science, asked by akashanandnair7777, 4 months ago

write a program in python to check whether a number is palindrome or not with loop​

Answers

Answered by trishitaaf
3

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