gpt4 book ai didi

python读取日志并写入新文件

转载 作者:太空宇宙 更新时间:2023-11-04 10:25:23 28 4
gpt4 key购买 nike

我正在使用下面的代码读取文件,并写入一些包含特定单词的行

with open('access.log') as f:
for line in f:
logdate = datetime.strptime(line.split(',')[0], '%Y-%m-%d %H:%M:%S')
if logdate >= datetime.now() - timedelta(minutes=10):
if 'Busy' in line:
file = open ('newfile.txt' , 'w')
file.write(line)
file.close()

我仍然无法创建文件和插入数据,我在这里想念什么?

最佳答案

您使用 w 继续覆盖,使用 a 在循环外追加或打开。

with open('access.log') as f, open ('newfile.txt' , 'w') as file:
for line in f:
logdate = datetime.strptime(line.split(',')[0], '%Y-%m-%d %H:%M:%S')
if logdate >= datetime.now() - timedelta(minutes=10) and 'Busy' in line:
file.write(line)

关于python读取日志并写入新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29622547/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com