如何从 Python 中的特定文本行中提取文本?

发布于 2024-10-14 10:20:44 字数 37 浏览 5 评论 0原文

如何使用 Python 从文本文件内的特定文本行中提取文本?

How would I pull text from a specific text line, inside a text file using Python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

哆兒滾 2024-10-21 10:20:44

如果您想读取第 10 行:

with open("file.txt") as f:
    for i in range(9):
        f.next()
    print f.readline()

这不会读取内存中的整个文件。

If you want to read the 10th line:

with open("file.txt") as f:
    for i in range(9):
        f.next()
    print f.readline()

This doesn't read the whole file in memory.

染柒℉ 2024-10-21 10:20:44

最简单的方法:

print list( open('filename') )[line_number]

这将读取整个文件,这可能不是一个好主意。更有效的技术取决于您如何使用它。

The simplest method:

print list( open('filename') )[line_number]

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.

一梦浮鱼 2024-10-21 10:20:44

下面的 Python 示例应该提取正确的行号,但效率非常低:

f = open('file.txt')
print f.readlines()[line_number]

The following Python example should extract the correct line number, but it is horribly inefficient:

f = open('file.txt')
print f.readlines()[line_number]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文