Hi there,
I worked on the basis that the file looked fixed width:
f = file('d:\\tek.txt', 'r').readlines()
for l in f:
x, y, a, b = l[0:11], l[12:26], l[27:36], l[37:-1]
print x, y, a, b
I hope this helps (not altogether sure I have the right end of the problem).