Answers for "python len int"

8

python execute string

a = """
A = 5
if A > 0 :
	print("A Is Positive")
elif A == 0 : 
	print("A Is Equal To 0")
else : 
	print("A Is Negative")
"""
exec(a)
>>> A Is Positive
#you can also use eval(string) for asyncio
Posted by: Guest on May-31-2020
12

python input integer

# To prompt the user to input an integer we do the following:
valid = False

while not valid: #loop until the user enters a valid int
    try:
        x = int(input('Enter an integer: '))
        valid = True #if this point is reached, x is a valid int
    except ValueError:
        print('Please only input digits')
Posted by: Guest on April-03-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language