Answers for "python count the digits in string"

7

number of digits in a number python

n = 1234 //Any Random Number
digits = len(str(n)) //Saves the number of digits of n into the variable digits
Posted by: Guest on March-26-2020
0

get number of digits in an integer python without converting to string

num = int(input())
count = 0
while num > 0:
  count += 1
  num = num // 10
print(count)
Posted by: Guest on June-28-2021

Code answers related to "python count the digits in string"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language