Python program to check whether a given number is palindrome or not
Develop a Python program to check whether a given number is palindrome or not and also count the number of occurrences of each digit in the input number Program:- Output:- Enter a value : 1234234Not Palindrome1 appears 1 times2 appears…

