标签: python python-3.x nlp nltk
txt1_response = requests.get("http://www.gutenberg.org/cache/epub/11313/pg11313.txt") txt1 = txt1_response.text
我已经阅读了该网址中的所有文本。我想删除“关于动物”一词之前的所有文本内容。
做到这一点的最佳方法是什么?
答案 0 :(得分:0)
txt1 [txt1.index('ABOUT ANIMALS'):]