Python liest bestimmte Textzeilen zwischen zwei Zeichenfolgen
Ich habe Probleme, Python dazu zu bringen, bestimmte Zeilen zu lesen. Woran ich gerade arbeite, ist ungefähr so:
lines of data not needed
lines of data not needed
lines of data not needed
--------------------------------------
***** REPORT 1 *****
--------------------------------------
[key] lines of interest are here
[key] lines of interest are here
[key] lines of interest are here
[key] lines of interest are here
[key] lines of interest are here #This can also be the EOF
--------------------------------------
***** REPORT 2 *****
--------------------------------------
lines of data not needed
lines of data not needed
lines of data not needed #Or this will be the EOF
Was ich versucht habe, war etwas wie:
flist = open("filename.txt").readlines()
for line in flist:
if line.startswith("\t**** Report 1"):
break
for line in flist:
if line.startswith("\t**** Report 2"):
break
if line.startswith("[key]"):
#do stuff with data
Ich habe jedoch ein Problem, wenn die Datei ohne Endebegrenzer endet ... Zum Beispiel, wenn der Bericht Nr. 2 nicht angezeigt wird. Was ist ein besserer Ansatz?