I want to specify an offset and then read the bytes of a file like
offset = 5 read(5)
and then read the next 6-10 etc. I read about seek but
seek doesn't return anything useful. It simply moves the internal file pointer to the given offset. The next read will start reading from that pointer onwards.
seek