检查字符串是否存在于文件中

时间:2014-04-09 08:17:29

标签: python string file python-2.7

目前尚不清楚如何在检查阶段使用支持变量而不是字符串来检查字符串是否存在。 例如。 我有两个文件(源和目标).Inedd验证源中列出的字符串是否存在于目标中。 list [1]包含源文件中的字符串(由' print'验证)

for line in destination.readlines():
    if list[1] in line:
       print "  >>  >>WRITE:", list[1]
       destination.seek(0)
       break # variable found, exit from for cycle 

不起作用,但如果我尝试使用字符串'如果'声明,它有效...为什么???

 for line in destination.readlines():
    if 'duck' in line:
       print "  >>  >>WRITE:", list[1]
       destination.seek(0)
       break # variable found, exit from for cycle

0 个答案:

没有答案