python convertit le numéro en liste des chiffres
n = 1234
# convert integer to list of digits
list_of_digits = list(map(int, f"{n}"))
# convert list of digits back to number
number = int(''.join(map(str, list_of_digits)))
Wojak's distant cousin