Python: Convert a given number (integer) to a list of digits
Python List: Exercise - 234 with Solution
Write a Python program to convert a given number (integer) to a list of digits.
Use map() combined with int on the string representation of n and return a list from the result.
Sample Solution:
Python Code:
# Define a function 'digitize' that takes an integer 'n' as input.
def digitize(n):
# Convert the integer 'n' to a string, map each character to an integer, and create a list of those integers.
return list(map(int, str(n)))
# Call the 'digitize' function with example integers and print the results.
print(digitize(123))
print(digitize(1347823))
Sample Output:
[1, 2, 3] [1, 3, 4, 7, 8, 2, 3]
Flowchart:
Python Code Editor:
Previous: Write a Python program to chunk a given list into n smaller lists.
Next: Write a Python program to find the index of the last element in the given list that satisfies the provided testing function.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-234.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics