In article <[email protected]>,
Terry Reedy <[email protected]> wrote:
>
>for line in open('char.txt'):
> if line.find('sweet') != -1 or line.find('blue') != -1:
> print(line)
For any recent Python, this should be:
if 'sweet' in line or 'blue' in line:
Although I think that for the OP's use case, it ought to be:
if line.startswith('sweet=') or line.startswith('blue=')
--
Aahz ([email protected]) <*> http://www.pythoncraft.com/
"All problems in computer science can be solved by another level of
indirection." --Butler Lampson
--
http://mail.python.org/mailman/listinfo/python-list