Answers for "python make a list of digits in a number"

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

Code answers related to "python make a list of digits in a number"

Python Answers by Framework

Browse Popular Code Answers by Language