Итак, я пытаюсь написать программу, которая находит каждый индекс данного термина в текстовом файле, а затем добавляет все эти индексы в текстовый файл. Вот что я попробовал:
with open('jobs.txt', 'r') as e:
f = e.read()
list = []
search = "n"
index = 0
while search in e:
e.seek(index)
i = e.read().find(search)
index = index + int(i) # so the idea is that each time an index with that letter is found,
#it gets recorded, and then, so that it doesn't repeat itself in the list,
#I'm having the program start reading the file from that given index
list.extend(''.join(str(i)))
print(list)
однако, что я получаю, это:
[]
У кого-нибудь есть какой-нибудь совет? Заранее спасибо!