如何定义要从文件读入的行的长度

时间:2014-10-24 05:29:25

标签: python readfile

我正在从Python中的文件中读取行。这是我的代码:

with open('words','rb') as f:
    for line in f:

有没有办法定义我想要使用的行数?比方说,文件中的前1000行?

2 个答案:

答案 0 :(得分:3)

您可以使用enumerate()

with open('words','rb') as f:
    for i, line in enumerate(f):
        if i >= 1000:
            break
        # do work for first 1000 lines

答案 1 :(得分:1)

创建一个变量来计算。我在下面用过我。该值将在每次迭代中递增。当值达到999即1000次时,你可以在那里做东西

i = 0
with open('words','rb') as f:
   for line in f:
      if(i<1000):
         #do stuffs
         i = i+1