1.write a program to count the total number of digits in a number?

n= int(input("enter a number : "))
count = 0
while(n!=0):
n //= 10
count += 1
print(count)

1 Like

@nyalakondasriharsha1

correct, keep it up.

1 Like

n=int(input(“number:”))
count=0
while(n>0):
count=count+1
n=n//10
print(“The number of digits in the number are:”,count)

2 Likes

@amarjeetkumar1605

correct, keep it up.