Вот более простая реализация того, чего вы пытаетесь достичь. Вы можете прочитать файл в список 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