1 or 2 # returns 1, not True
(1 or 1) == True # returns False
You spend half your life doing Boolean algebra and then Python just has to come and mess it all up.
1 or 2 # returns 1, not True
(1 or 1) == True # returns False
You spend half your life doing Boolean algebra and then Python just has to come and mess it all up.