I did a simple test like below:
>>> valsH["S0"] = 1
>>> valsH["I1"] = 0
>>> valsH["I2"] = 1
>>> valsH["I0"] = 1
>>> """original position of: not valsH["I1"]"""
>>>
>>> valsH["I0"] and not valsH["I1"] and valsH["I2"] and valsH["S0"]
1
>>> """After moving: not valsH["I1"] to the end of the expression"""
>>>
>>> valsH["I0"] and valsH["I2"] and valsH["S0"] and not valsH["I1"]
True
>>>
So it seems that depending on where
not valsH["I1"]
is, the value of the Boolean equation is printed as '1' or 'True'.
Why is this so?
This is by how
and
works. Let's take the following example:First evaluate p, if p is true, evaluate q. If q is true, it returns True but of whatever type q. So:
For
or
it goes the other way around. Since only one is required to be true, if the first is true, it returns true of that type. So: