Say I define a
and b
as follows:
a = 1
b = 1
Then I test:
a == 1
#True
5>4
#True
a==1 & b==1
#True
5>4 & 4>3
#True
a==1 & 5>4
#False
What is going on with the last one? I would like to be able to test the last inequality and get the result of True
.