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

监听文件的输入

时间:2019-09-01 12:39:14      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:str   lin   bsp   adl   coding   encoding   strip   style   def   

#监听过滤的效果
def tail(filename):
    f = open(filename,encoding=utf-8)
    while 1:
        line = f.readline()
        if line.strip():
            yield line.strip()

q = tail(2019-9-1)
for i in q:
    print(i)

 

监听文件的输入

标签:str   lin   bsp   adl   coding   encoding   strip   style   def   

原文地址:https://www.cnblogs.com/li33232/p/11441771.html

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