Why the \'not\' operator gave the invalid syntax error?
>>> a=10 >>> b=10 >>> not (a==b) False >>> not a==b False >>