The question is simple
>>> bull = False in [False] #Assigning value
>>> False == False in [False] #Note: Comparision is True
True
>>> False == bull #Que: Why not True?
False
>>>
I'm looking for an explanation for the above I mean what exactly is going on as I assign the same to bull what I'm trying in the coming next lines....
These threads do not answer my questions as I'm looking for simple False and True assignment and comparison statements.
It is going to question mark what I learned in maths what they called transitivity, symmetry, and reflexivity?