Answers for "how to split an interger to digits python"

3

splitting a number into digits python

>>> n = 43365644 
>>> digits = [int(x) for x in str(n)]
>>> digits
[4, 3, 3, 6, 5, 6, 4, 4]
>>> lst.extend(digits)  # use the extends method if you want to add the list to another
Posted by: Guest on June-16-2020
0

how to separate each digit in an integer in python

# Method 1
n = 43365644 
digits = [int(x) for x in str(n)]
print(digits)
#Output 1
>>> [4, 3, 3, 6, 5, 6, 4, 4]

lst.extend(digits)  # use the extends method if you want to add the list to another


# Method 2
n = 43365644
[(n//(10**i))%10 for i in range(math.ceil(math.log(n, 10))-1, -1, -1)]
#Output 2
>>> [4, 3, 3, 6, 5, 6, 4, 4]
Posted by: Guest on January-07-2021

Code answers related to "how to split an interger to digits python"

Python Answers by Framework

Browse Popular Code Answers by Language