我在阅读特定行时遇到问题。它类似于此处回答的问题: python - 从特定文本行读取文件和向特定文本行读取文件 区别,我没有固定的结束标记。让我举个例子:
--------------------------------
\n
***** SOMETHING ***** # i use this as my start
\n
--------------------------------
\n
data of interest
data of interest
data of interest
\n
----------------------- #this will either be dashes, or EOF
***** SOMETHING *****
-----------------------
我尝试做与上述链接类似的事情,但我无法创建 if 语句来中断循环,因为我不知道它是否会是 EOF。