Python Leer archivo de texto busque cadena

 f = open(filename,  "r")
   whattoReturn = "None"
   if strToFind in f.read():
      whattoReturn = strToFind
Witty Whale