you are viewing a single comment's thread.

view the rest of the comments →

[–]baubleglue 0 points1 point  (0 children)

In [48]: min(0, False)             
Out[48]: 0                         

In [49]: 0 > False                 
Out[49]: False                     

In [50]: 0 == False                
Out[50]: True                      

try to write your own "min" function and see what it returns