|
|
|
|
|
by cjhopman
2244 days ago
|
|
Or think about it for a moment and realize that it would be True with either precedence if interpreted as expected. Or read the very first part of the linked page that shows: >>> (True == False) is False
True
>>> True == (False is False)
True
|
|