python:combine和not操作符?

Python: Combine AND and NOT operators?

本问题已经有最佳答案,请猛点这里访问。

if (cond1 and cond2) or (not cond1 and not cond2):

有simpler写这在Python中的路吗?


如果Cond1和Cond2是布尔值,则肯定存在:

1
cond1 == cond2