I had a question about dividing long binary string to shorter ones.
For example, I am trying to convert...
000000100000000011000000100000000010000000100000000001
to...
000000100000000011
000000100000000010
000000100000000001
So basically, I am looking for a python command so that the program can create new line every 18 digits and if possible, introduce a space between first 7 digits and last 11 digits. And then reverse them all back to longer string.