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

Python文件将日志文件中每天的日志拿出来

时间:2018-07-20 22:34:59      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:com   write   bubuko   print   txt   文件中   file   open   img   

 file_log.txt文件内容如下:

技术分享图片

with open(file_log.txt, r, encoding=utf-8) as f:
    for i in f:
        s = i.split()
        #print(s)
        data = s[0]
        with open(data+.log, a, encoding=utf-8) as ff:
            ff.write(i)
            ff.flush()

 

Python文件将日志文件中每天的日志拿出来

标签:com   write   bubuko   print   txt   文件中   file   open   img   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/9343722.html

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