Py学习  »  Python

如何在python中读取文本文件,然后在同一个文件中写入内容

hari prasath • 3 年前 • 1315 次点击  

我目前正在与yolov5合作,代码是 here 我稍微修改了代码,将结果保存在名为 输出txt

输出txt文件:

0: 480x640 2 persons, 1 tv, 1: 480x640 5 persons, 1 cell phone, Done. (0.759s) Mon, 04 April 11:39:48
0: 480x640 2 persons, 1 laptop, 1: 480x640 4 persons, 1 oven, Done. (0.763s) Mon, 04 April 11:39:50

之后,我想用以下条件逐行验证文本文件

if person and tv detected in same row add status : High 
if person and laptop detected in same row add status : Low 

预期产出:

0: 480x640 2 persons, 1 tv, 1: 480x640 5 persons, 1 cell phone, Done. (0.759s) Mon, 04 April 11:39:48 status : High 
0: 480x640 2 persons, 1 laptop, 1: 480x640 4 persons, 1 oven, Done. (0.763s) Mon, 04 April 11:39:50 status : Low

如果可以,我该如何解决

提前谢谢

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/131844
 
1315 次点击  
文章 [ 1 ]  |  最新文章 3 年前