test.txt is a "\n" split text file:
f = open('test.txt','r') f.read(256)
But while read 256, the last records may not with full line.
How to read such as:
I set read 256 but when 248 is the "\n" and 256 the last records not with full line just read 248, and f.tell() give the 248 position.
Thanks.