Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
boolean = lambda x, y, op: globals()[op[:2]](x, y) solution in Creative category for Boolean Algebra by flpo
from operator import and_ as co, or_ as di, eq, xor as ex, le as im
boolean = lambda x, y, op: globals()[op[:2]](x, y)
Sept. 16, 2017