Computer Science, asked by souravsinghstar14, 4 months ago

WAP in python to check whether a number is palindrome or not​

Answers

Answered by kumarkumarsunil1010
0

Answer:

.a.and

a

a

aadd

add

a

a

a

as

a

  • asmdmtmtmtmd e nrken rmene down wk2kp20922p22o2oo2o

Explanation:

2lek2ene eneke.2mwl3m2k2

Answered by pragatibhatt2922
1

Answer:

Explanation:

Here is source code of the Python Program to check whether a given number is a palindrome. ... 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!") 1.

Similar questions