We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Checks if even no. of values are true. 📰 📘
Similar: xor, xnor. Similar: and_, or_, not_, xor.
xnor(a, b, ...) # a: 1st boolean # b: 2nd boolean
from extra_boolean import xnor xnor(True, True) # True xnor(False, True) # False xnor(True, True, False, False) # True xnor(True, True, True, False) # False