"c james" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]

>>>> 't' in sample == True
> False

It's comparison operator chaining:

't' in sample == True is like 't' == sample == True

and is equivalent to  't' in sample and sample == True 


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to