Answers for "calculate length of integer in python"

2

len of int python

len(str(n))  #n is a number
Posted by: Guest on March-16-2021
0

get length of an integer python

# Below uses constant space (converting to string and then gettings it's length does not)
num = 12362
count = 0
while num > 0:
  count += 1
  num = num // 10
print(count)

# for negative numbers, take absolue value first:
num = -12362
num = abs(num)
count = 0
while num > 0:
  count += 1
  num = num // 10
print(count)
Posted by: Guest on June-28-2021
0

number length python

number_length =  lambda s: len(str(s)) #number length without recursion

#number length with recursion
numlen = 1
def num_len(s):
  if s > 9:
    numlen += 1
  else:
    s = numlen
    numlen = 0
    return s
  return num_len(s//10)
Posted by: Guest on December-04-2020

Code answers related to "calculate length of integer in python"

Python Answers by Framework

Browse Popular Code Answers by Language