> On 23 Feb 2021, at 22:10, Steven D'Aprano <[email protected]> wrote: > > There are exactly 2**4 = 16 boolean operators of two variables. Python > only supports two: `and` and `or`. Plus a single unary operator `not` > (out of four possible unary operators). What makes xnor so special that > you want it to be an operator?
Python implements more then 2 of them: True False not and or https://en.wikipedia.org/wiki/Boolean_algebras_canonically_defined#Truth_tables Barry
_______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/XXN3NDW2KZDPQWRAF4L3MCAC7FP6DXYU/ Code of Conduct: http://python.org/psf/codeofconduct/
