How to search for a string in text files?

后端 未结 12 2277
死守一世寂寞
死守一世寂寞 2020-11-22 04:29

I want to check if a string is in a text file. If it is, do X. If it\'s not, do Y. However, this code always returns True for some reason. Can anyone see what i

12条回答
  •  抹茶落季
    2020-11-22 05:34

    found = False
    def check():
    datafile = file('example.txt')
    for line in datafile:
        if "blabla" in line:
            found = True
            break
    return found
    
    if check():
        print "found"
    else:
        print "not found"
    

提交回复
热议问题