为什么在使用括号时这些语句按预期工作:
>>> (True is False) == False True >>> True is (False == False) True
但是False当没有括号时它会返回?
False
>>> True is False == False False
python python-3.x
python ×1
python-3.x ×1