在使用seek()函数时,有时候会报错为 “io.UnsupportedOperation: can’t do nonzero cur-relative seeks”,如下: with open('C:/Users/Desktop/xian.txt', 'r') as filename: print(filename.read()) print(filename.tell()) print(filename.seek(2,1)) 照理说,按照seek()方法的格式file.seek(offset,from),后面的from可以选择0(从头开始偏移),1(从当前位置偏移