python:file.seek(position)似乎无法正常工作

时间:2017-11-21 01:47:19

标签: python python-3.x

我有一个文本文件,我想从使用obje.seek(位置)的位置读取它,但这似乎对我不起作用 有没有办法在到达某个位置后关闭文件

import re
import csv
fopen=open(r'''C:\Users\acer\Desktop\RBIRVSL_02PM_2011.log''',"r")
a=fopen.tell()
for line in fopen:
    a=a+1
    if "----- ATM card Transactions----" in line:
        #fopen.tell()
        #continue
        #print(line.split())
        starting=a+2
    elif "RVSL-AMT" in line:
        rvsl=a+2

print(starting) #prints 23
print(rvsl) 
fopen.seek(starting)

print(fopen.readline()) #prints first line

0 个答案:

没有答案