模块练习
Posted nuobao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模块练习相关的知识,希望对你有一定的参考价值。
#需求分析
#把双数文件的日志,里面随便写点东西进去
#1获取到logs目录下所有的文件 os.walk()
#2根据文件名来判断是否双数日期 ,分割字符串取到日期 用split
#3取双数 12%2
#4打开这个文件,把东西写进去 open write
import os for abs_path,dir,file in os.walk(r‘F:jiangmengmengday413421logs‘): # print(abs_path,dir,file) for f in file: # print(f) #相对路径 #android_2018-04-12.log day = f.split(‘.‘)[0].split(‘-‘)[-1] #12 if int(day)%2 ==0: file_name = os.path.join(abs_path,f) #拼接绝对路径 # print(file_name) s = open(file_name,‘a+‘,encoding=‘utf-8‘) s.write(‘画画‘)
以上是关于模块练习的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段