Python 文件操作seek()函数
Posted wolfking429
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 文件操作seek()函数相关的知识,希望对你有一定的参考价值。
函数语法
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字节
以上是关于Python 文件操作seek()函数的主要内容,如果未能解决你的问题,请参考以下文章