Python Program to find length of a number
In this post we are going to find the length of a number. For example length of 100 is 3. In this way we have to find solution for the above program.
Input:
5000
Output:
4
Explanation:
length ( 5000 ) = 4 its 4.
Code:
n=input()
print(len(n))
Note:
Hello Guys, Don't Stop Learning keep Going..............