Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
An operator by any other name... solution in Creative category for Boolean Algebra by veky
from operator import (and_ as conjunction, or_ as disjunction, xor as exclusive,
le as implication, eq as equivalence)
boolean = lambda x, y, op: globals()[op](x, y)
Aug. 11, 2016