在读取文本文件时,未检测到某些行吗?

时间:2019-03-20 04:05:04

标签: python file text

  

text_file.txt

     

我得到第一个打印语句的输出,但没有第二个打印语句的输出。请向我提供正确的代码,我需要编码或解码吗?请帮助我,我是python3的新手

1 个答案:

答案 0 :(得分:1)

这是您要实现的目标的更直接的实现。您可以将文件读入Python列表,并通过Python列表索引引用每一行

with open('text_file.txt','r') as f: # automatically closes the file
    input_file = f.readlines() # Read all lines into a Python list

for line_num in range(len(input_file)):
    if "INBOIS BERCUKAI" in input_file[line_num]:
        print(input_file[line_num + 2]) # offset by any number you want
    # same for other if statements