码迷,mamicode.com
首页 > 其他好文 > 详细

求文件的m至n行

时间:2016-07-14 02:19:36      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/env python

def read_file(file_name,start,stop):
    start_line = 0
    try:
        with open(file_name) as f:
            for line in f:
                start_line += 1          #计数循环
                    if start <= start_line <= stop:
                        yield line
    except IOError, e:
        raise e
    finally:
    f.close()
reslut = read_file(‘/etc/passwd‘,2,10)
for lines in  reslut:
    print lines,
        

求文件的m至n行

标签:

原文地址:http://www.cnblogs.com/huangweimin/p/5668521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!