I want to have a user input a number, and that number is turned into a list named digits. I need to be able to do this without any seperators like space or comma...
number=int(input())
digits=[]
#
print (digits)
Example:
User input: 808
Code output: [8,0,8]