New to Python
Jean-Michel Pichavant
jeanmichel at sequans.com
Tue Feb 9 18:59:15 EST 2010
Quin wrote:
> s = f.readline()
> if 'mystring' in s: print 'foundit'
> if 'mystring' not in s: print 'not found'
> if 'mystring' in s:
> print 'processing'
>
> this generates output:
> not found
> processing
>
> so, it doesn't find the substring, but goes into processing code anyway.
>
> This is using IronPython
The code you povided works as expected.
Copy paste the exact code
JM
More information about the Python-list
mailing list