码迷,mamicode.com
首页 > 编程语言 > 详细

Python: yield, python 实现tail -f

时间:2017-12-21 19:27:45      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:blog   user   with open   获取   bsp   with   文件   div   script   

def CreateGenerator(file):

    with open(file,‘r‘) as t:

        t.seek(0,2)

        while True:

    line=t.readline()

    if not line:

      time.sleep(0.1)

      continue

    yield line

g=CreateGenetor(r‘C:\Users\Runlog.log)

for i in g:

  print(i)

 

script:

可以在cmd里面运行C:\python\Python1\Python1\Python1.py  C:\Users\Runlog.log,可以不加路径,更新文件保存后便能获取到新增加的log

Python: yield, python 实现tail -f

标签:blog   user   with open   获取   bsp   with   文件   div   script   

原文地址:http://www.cnblogs.com/baxianhua/p/8081821.html

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