当前位置: 首页 > 工具软件 > Seeks > 使用案例 >

python中UnsupportedOperation: can't do nonzero cur-relative seeks错误

简成仁
2023-12-01
file=open("E:\\test.txt","r")
words=file.read(10)
print(words)
print(file.tell())
file.seek(4,1)
print(file.tell())
file.close()

会报错,是因为python的文件打开中,没有使用b模式选项打开文件,只允许从文件头开始计算相对位置

访问模式改为rb或rb+即可

如下:

file=open("E:\\test.txt","rb")
words=file.read(10)
print(words)
print(file.tell())
file.seek(4,1)
print(file.tell())
file.close()

 

 类似资料: