A palindrome number is a number that remains the same when its digits are reversed. It is "symmetrical", like 12321. Using python, palindrome number can be check by extract the every digit from the given number and arrange them in reverse order. This process can be done using while loop, while rotated until zero. For example code follow the link palindrome number in python.
Comments
Post a Comment