I can\'t figure out how to do this with string methods:
In my file I have something like 1.012345e0070.123414e-004-0.1234567891.21423... which means there is no deli
you can do it like this:
step = 12 for i in range(0, len(string), 12): slice = string[i:step] step += 12
in this way on each iteration you will get one slice of 14 characters.