1
vote
5
votes
Python: splitting an integer into digits
while number:
digit = number % 10
# do whatever with digit
number /= 10
On each iteration of the loop, it removes the last digit from number, assigning it to $ …
