如何删除特定单词之前的所有文本?

时间:2019-01-13 22:30:40

标签: python python-3.x nlp nltk

txt1_response = requests.get("http://www.gutenberg.org/cache/epub/11313/pg11313.txt")
txt1 = txt1_response.text

我已经阅读了该网址中的所有文本。我想删除“关于动物”一词之前的所有文本内容。

做到这一点的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

txt1 [txt1.index('ABOUT ANIMALS'):]