繁体   English   中英

如何只读取文件的第二行?

[英]How to read in only every second line of file?

我只需要读文件的第二行(非常大),所以我不想使用readlines() 我不确定如何实现迭代器,因此欢迎提出任何建议。 一种可能性是调用next()两次。 不太吸引人。

    with open(pth_file, 'rw') as pth:
        pth.next()
        for i,row in enumerate(pth):
            # do stuff with row
            pth.next()

或者创建自己的迭代器,例如

for i, row in enumerate(pth):
    if i...

使用itertools.islice

import itertools

with open(pth_file) as f:
    for line in itertools.islice(f, 1, None, 2):
        # 1: from the second line ([1])
        # None: to the end
        # 2: step

        # Do something with the line

您可以使用自定义迭代器:

def iterate(pth):
    for i, line in enumerate(pth, 1):
        if not i % 2:
            yield line

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM