para cada dígito em número python
for digit in str(n):
print(int(digit))
Marton
for digit in str(n):
print(int(digit))