python提取txt文件部分数据
时间: 2023-10-07 15:10:35 浏览: 146
您好,关于您的问题,我可以为您提供一个简单的Python代码示例来提取txt文件部分数据:
```python
with open('file.txt', 'r') as f:
data = f.read()
start = data.index('start_phrase') + len('start_phrase')
end = data.index('end_phrase', start)
result = data[start:end]
print(result)
```
其中,`'file.txt'`是您要提取数据的txt文件名,`'start_phrase'`和`'end_phrase'`是您要提取数据的起始和终止关键词。以上代码将从txt文件中提取出包含在`'start_phrase'`和`'end_phrase'`之间的文本数据,并打印输出。
请注意,此代码仅供参考,如有任何问题请自行调试。如果您需要更详细的帮助,请随时向我提问。
阅读全文