Für jede Ziffer in Nummer python

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