The following code:
a,b=1,2
print((x:=a)<2<(z:=b) or z>1>x)
print((x:=a)<1<(y:=b) or y>1>x)
gives the following output:
False
Traceback (most recent call last):
File "C:/Users/phili/PycharmProjects/ML 1/CodingBat exercises.py", line 56, in <module>
print((x:=a)<1<(y:=b) or y>1>x)
NameError: name 'y' is not defined
which seems absolutely inconsistent. Some variations like
(x:=1)>=2>(y:=9) or y>=2>x
also gives
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'y' is not defined
Does anyone know what's happening?
Apparently chained operators short-circuit. You can see this in this example code:
This is likely because
Is essentially a short-hand of
And
and
short-circuits:This means that since the left-hand check is False, the right side is never evaluated, so
y
is never set.