file_object

#!/use/bin/python
#encoding=utf-8

filename="WinPMT.log"
filename_1="WinPMT_stress.txt"

with open(filename_1,"w") as file_object_1:
    file_object_1.write("")
with open(filename) as file_object:
    lines=file_object.readlines()

for line in lines:
    if "error"in line or "Cycle:" in line:
        print(line)
        with open(filename_1,'a') as file_object_1:
            file_object_1.write(line)

posted @ 2019-01-03 20:56  Bambooboo  阅读(155)  评论(0编辑  收藏  举报