无法在字符串

时间:2017-09-27 20:25:33

标签: python eclipse

我有从文本文件中读取的简单代码。如果我删除if语句,它会按预期输出每个单词。但是,在输入if语句(用于查找特定单词)之后,它会输出如下图所示的内容:

enter image description here

with open("tasksUpdateFailedDailyReport_output.txt") as f:
     for line in f:
         for word in line.split():
             if "Filename" in word: 
                 print(word)

print("Done");

如果改变了什么,我会使用Eclipse作为IDE。目标是能够在此文本文件中查找特定单词来操作它们。

0 个答案:

没有答案