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

双数日期下插入文本内容

时间:2019-02-18 18:41:36      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:内容   pat   os.walk   今天   file   路径   open   pen   字符   

如果是单数的话只需要把

date1% 2 == 0 换成 date1% 2 != 0  即可
import os
path=e:/DSX/LX/day6/logs/android
for root, dirs, files in os.walk(path):  # 遍历路径下的所有目录及文件
    for file in files:
        filename = file.split(.)[0]  # 文件名用.分隔
        date = filename.split(-)[2]  # 文件名再次分隔取到日期
        date1=int(date)#字符串转换成整型
        if date1% 2 == 0:#
            with open(os.path.join(path,file), a+, encoding=utf-8) as f:
                f.write(今天太阳好漂亮)

 

双数日期下插入文本内容

标签:内容   pat   os.walk   今天   file   路径   open   pen   字符   

原文地址:https://www.cnblogs.com/ruijie/p/10397152.html

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