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

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

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

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

解决方法:

你可以使用enumerate()

with open('words','rb') as f:
    for i, line in enumerate(f):
        if i >= 1000:
            break
        # do work for first 1000 lines
上一篇:php – readfile无法正常工作


下一篇:nodejs部署配置pm2