Pour chaque chiffre en nombre Python

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