Possible Duplicate:
Order of syntax for using ‘not’ and ‘in’ keywords
My TA claims that e not in c
doesn't always yield the same results as not e in c
(he didn't give an explanation why though). I've never personally seen the second form in anyone's code (except his and books explaining that the two are equivalent) and never seen the two to differ in behavior so I'm suspicious of this claim. Not having found anything on it through Google I decided to come here.
So does anyone have any information about any case in which the behavior of the two differs?