函数语法
seek(offset, whence=0, /)
函数说明
Change the stream position to the given byte offset.The offset is interpreted relative to the position indicated by whence.
参数说明
offset代表移动的字节偏移量
whence代表移动的起始位置,缺省为0
* 0 -- start of stream (the default); offset should be zero or positive
* 1 -- current stream position; offset may be negative
* 2 -- end of stream; offset is usually negative
注:当未使用二进制格式打开文件时,从当前位置或文件尾进行偏移会报“io.UnsupportedOperation: can‘t do nonzero cur-relative seeks”错误,把文件打开方式加上“b”即可。
示例:
f.seek(4,0) #从开头位置向后偏移4字节
f.seek(3,1) #从当前位置向后偏移3字节
f.seek(-3,2) #从结尾位置向前偏移3字节
原文地址:https://www.cnblogs.com/wolfking429/p/9869236.html