如何从 Python 中的特定文本行中提取文本?
如何使用 Python 从文本文件内的特定文本行中提取文本?
How would I pull text from a specific text line, inside a text file using Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想读取第 10 行:
这不会读取内存中的整个文件。
If you want to read the 10th line:
This doesn't read the whole file in memory.
最简单的方法:
这将读取整个文件,这可能不是一个好主意。更有效的技术取决于您如何使用它。
The simplest method:
That's gonna read in the whole file which may not be a good idea. A more efficient technique would depend on how you are using it.
下面的 Python 示例应该提取正确的行号,但效率非常低:
The following Python example should extract the correct line number, but it is horribly inefficient: