我想从特定的单词到文件末尾读取txt文件。
示例:
如果这些文件位于.txt文件中
A部分:
A部分的内容
B部分
B部分的内容
C部分
C部分的内容
在这里我想从c部分或c部分开始提取或仅读取
我知道要从中间提取
with open(file1) as file:
text = file.read().lower().split("part b")[1].split("part c")[0].strip()
但无法获得EOF
答案 0 :(得分:1)
您已经关闭。只需在c部分将其拆分,然后从结果列表中取出第二项即可。
with open(file1) as file:
text = " ".join(file.read().lower().split("part c")[1:]).strip()
我认为类似的方法会起作用,但这只是我未测试FYI的伪代码
答案 1 :(得分:1)
也许很简单:
with open(file1) as file:
text = file.read().lower().split("part c")[1]