Answers for "how to convert an integer into a list of digits in python"

3

python convert number to list of digits

n = 1234
# convert integer to list of digits
list_of_digits = list(map(int, f"{n}"))

# convert list of digits back to number
number = int(''.join(map(str, list_of_digits)))
Posted by: Guest on April-25-2021
3

python make integer into a list

res = [int(x) for x in str(num)]
Posted by: Guest on April-02-2020

Code answers related to "how to convert an integer into a list of digits in python"

Python Answers by Framework

Browse Popular Code Answers by Language