You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python due to historical usage allows the usage of not a in b, which actually means a not in b. The syntax not a in b seems weird to me, and some users might read it as (not a) in b or even not (a in b). I propose forbidding this syntax.
Python due to historical usage allows the usage of
not a in b, which actually meansa not in b. The syntaxnot a in bseems weird to me, and some users might read it as(not a) in bor evennot (a in b). I propose forbidding this syntax.