ICI Modules: sys: lseek
Modules by name : by typeSynopsis
int = sys.lseek(int, int [, int])Description
Set the file read/write position of the file descriptor given as first argument to the offset given as the second argument. If the third argument is given this modifies the interpretation of the offset argument and may be one of the values, sys.SEEK_SET, sys.SEEK_CUR or sys.SEEK_END to indicate from where the offset is measured. The default is sys.SEEK_SET.