untuk setiap digit dalam jumlah python
for digit in str(n):
print(int(digit))
Marton
for digit in str(n):
print(int(digit))