I take a string of integers as input and there are no spaces or any kind of separator:
12345
Now I want this string to converted into a list of individual digits
[1,2,3,4,5]
I've tried both
numlist = map(int,input().split(""))
and
numlist = map(int,input().split(""))
Both of them give me Empty Separator error. Is there any other function to perform this task?