Skipping data in a binary file in Python -


i'm writing file reader (binary) format , need skip portion of file.

i fileobject.read(howmuchtoskip) that, guess load unneeded part memory , slow.

can set "index" of "pointer" or whatever that's called?

use fileobject.seek(offset).


Comments