Converts a number to a list of digits.
map()
combined with int
on the string representation of n
and return a list from the result.def digitize(n):
return list(map(int, str(n)))
digitize(123) # [1, 2, 3]
Python, Math
Initializes a list containing the numbers in the specified range where start
and end
are inclusive and the ratio between two terms is step
.
Python, Math
Finds the median of a list of numbers.
Python, Math
Calculates the greatest common divisor of a list of numbers.