I have a string in Python that I want to separate into a list without any separators.
The string is similar to a byte array: '0100100010011'
I want to separate the 1's and 0's from each other without using string.split() because that function requires a separator.
This should be my expected output: ['0', '1', '00', '1', '000', '1', '00', '11']