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

python bug解决方法:io.UnsupportedOperation: can‘t do nonzero cur-relative seeks

孙鑫鹏
2023-12-01

错误原因:‘r’,‘r+’模式打开文件,只允许从文件头开始计算相对位置,seek(5,1)中的1:表示当前位置,计算时就会引发异常。 

解决方法:需要将模式改为‘rb’,报错就会解决掉

错误代码代码:

f = open("test.txt", "r")
str = f.read(3)
print("读取的数据是%s" % str)

# 查找当前位置
position = f.tell()
print("当前文件位置%s" % position)

# 重新设置位置
f.seek(5,1)

# 查找当前位置
position = f.tell()
print("当前文件位置%s" % position)

f.close()

更正后代码: 

f = open("test.txt", "rb")
str = f.read(3)
print("读取的数据是%s" % str)

# 查找当前位置
position = f.tell()
print("当前文件位置%s" % position)

# 重新设置位置
f.seek(5,1)

# 查找当前位置
position = f.tell()
print("当前文件位置%s" % position)

f.close()

 

 类似资料: