我的Python解释器(v2.6.5)在以下代码部分中引发了上述错误:
fd = open("some_filename","r")
fd.seek(-2,os.SEEK_END) #same happens if you exchange the second arg. w/ 2
data=fd.read(2);
最后一个电话是fd.seek()
Traceback (most recent call last):
File "bot.py",line 250,in
奇怪的是,只有在执行我的整个代码时才会发生异常,而不是只有文件打开的特定部分.
在这部分代码的运行时,打开的文件肯定存在,磁盘未满,变量“iterator”包含正确的值,就像在第一个代码块中一样.
可能是我的错误?
提前致谢
最佳答案
来自lseek(2):
原文链接:https://www.f2er.com/python/439026.htmlEINVAL
whence is not one of SEEK_SET,
SEEK_CUR,SEEK_END; or the resulting
file offset would be negative,or
beyond the end of a seekable device.
所以仔细检查迭代器的值.