Skip to content

TypeScript code snippet – How to count the number of the digits in an input in python?

n=int(input("Enter number:"))
count=0
while(n>0):
    count=count+1
    n=n//10
print("The number of digits in the number are:",count)
See also  How split text in Python by space or newline with regex?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.