XORs two variables.
pyXor(arg0, arg1)
Variable 1 to be XORed
Variable 2 to be XORed
Performs XOR of the two arguments and returns the result. Arguments can be of type int, double, string, bool or python variable.
startPy py("a = 5") var = pyGet("a") pyXor(var,3) quitPy