If i have this string:
"0110100001100101011011000110110001101111"
How can I divide it at every eighth character into smaller strings, and put it into a list, so that it looks like this?:
['01101000','01100101','01101100','01101100','01101111']
So far, I can't figure out how this would be possible.
I should mention, since my strings are in binary so the length is always a multiple of 8.