gpt4 book ai didi

Python:如何从当前文件位置更改文件中的位置?

转载 作者:太空狗 更新时间:2023-10-30 01:00:48 25 4
gpt4 key购买 nike

<分区>

我想将文件位置从当前文件位置更改为另一个位置。假设我当前文件位置为 13,我想将此文件位置更改为 18。我使用 seek() 方法如下,但它显示了一些错误。

代码:-

fileobj = open("intro.txt","r");
content = fileobj.read(13);
pos = fileobj.tell();
print("Current position : ",pos);
fileobj.seek(5,1); #Change position from current position to next five character.

错误

fileobj.seek(5,1);

io.UnsupportedOperation: can't do nonzero cur-relative seeks

我使用的是 python 3.4.3。我该怎么做?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com