python 写文件模块
作者:互联网
看了log内置的模块,没看懂就自己写了一个笨办法记录程序log信息。copy后记得修改保存路径。
# -*- coding:utf-8 -*-
import os
import datetime
# 写log
def write(self):
today_path = str(datetime.datetime.now().year)+"-"+str(datetime.datetime.now().month)+"-"+str(datetime.datetime.now().day)+"-log.txt"
#检测log文件是否存在 ,这里的路径修改成自己的
res = os.path.exists('./log/'+today_path)
#创建一个当天日期的log
if res==False:
file = open('./log/'+today_path,'w')
print("create logfile successs!!")
file.close()
#追加写入log,每天都更新
with open('./log/'+today_path, 'a+') as f:
d_time = "["+str(datetime.datetime.now())+"]:"
f.write(d_time)
f.write(str(self)+'\n')
标签:文件,log,python,datetime,str,模块,path,now,today 来源: https://blog.csdn.net/weixin_42493339/article/details/121659246