f.seek()
ファイルを開き、 and を使用して各行を読みたいf.tell()
:
test.txt:
abc
def
ghi
jkl
私のコードは次のとおりです。
f = open('test.txt', 'r')
last_pos = f.tell() # get to know the current position in the file
last_pos = last_pos + 1
f.seek(last_pos) # to change the current position in a file
text= f.readlines(last_pos)
print text
ファイル全体を読み取ります。