number = input(u":\n".encode("utf-8"))
-sharpnumber = "%03d"%number
num_list = list(str(number))
num_list = [int(num_list[i]) for i in range(len(num_list))]
print num_list
The code is as above, it is OK to enter other numbers. Can print out normally
but if the first place is 0. For example, if you type "046", it will print out [3pc8]
what is the reason for this