I made a very simple function in Python 3.9 (f(x, y, z) = (x and y) or (not x and z)) that prints the result of this operation. What weirds me out is that in so
f(x, y, z) = (x and y) or (not x and z)