Python max() and min() values for bool
python
Solution
`True` is equal to `1` and `False` is `0`
Problem
In python interpreter, ``` min(True,False)==False max(True,False)==True ``` is assured by design?
python
`True` is equal to `1` and `False` is `0`
In python interpreter, ``` min(True,False)==False max(True,False)==True ``` is assured by design?