untuk setiap digit dalam jumlah python

for digit in str(n):
  print(int(digit))
Marton