在使用for循环读取文件时跳过一行

时间:2011-11-03 23:38:10

标签: python file-io for-loop iterator

如果第一行中的条件为真,我试图想办法跳过文件中的下两行。有什么想法可以做到这一点吗?这是我到目前为止所拥有的......

def main():
    file = open(r'C:\Users\test\Desktop\test2.txt', 'r+')
    ctr = 1
    for current_line in file:
        assert ctr<3
        if current_line[0:6] == str("001IU"):
            pass
        else:
            if ctr == 1 and current_line[9:11] == str("00"):
                do something...
                ctr += 1
            elif ctr == 1 and current_line[9:11] != str("00"):
                pass #I want it to skip the next two lines in the loop
            elif ctr == 2:
                do something...
                ctr = 1
            else:
                raise ValueError

2 个答案:

答案 0 :(得分:3)

在Python 2.6或更高版本中,使用

next(file)
next(file)

跳过迭代器file的两个项目,即接下来的两行。

答案 1 :(得分:1)

file.next()
file.next()

我会这样做......