pythonCopyimport math n = 13579 x = [(n//(10**i))%10 for i in range(math.ceil(math.log(n, 10))-1, -1, -1)] print(x) # [1, 3, 5, 7, 9]