0
我試圖根據現有的文件生成一個新文件,其中只包含一些預定義文本的行。我有:無法在python中生成正確的文件
with open("steps_shown_at_least_once.log", "r") as f:
for line in f:
if line.find("Run program"):
output = open('run_studio.txt', 'a')
output.write(line)
output.close()
由於某些原因,這會生成一個縮進文件。但是,我正在搜索的運行程序未位於舊文件的每一行中。 有人可以幫忙嗎? 謝謝!