Skip to content
Subhajit Sahu edited this page Mar 25, 2021 · 5 revisions

Checks if antecedent ⇎ consequent (a ⇎ b). 📰 📘

Similar: eq, neq.
Similar: imply, eq.


neq(a, b)
# a: antecedent
# b: consequent
from extra_boolean import neq


neq(True, False)
# True

neq(False, True)
# True

neq(True, True)
# False

neq(False, False)
# False


References

Clone this wiki locally