Finds the modulus between two variables.
pyMod(arg0, arg1)
Variable 1 acts as dividend
Variable 2 acts as divisor
Divides the two arguments and returns the remainder. Arguments can be of type int, double, string, bool or python variable.
startPy py("a = 5") var = pyGet("a") pyMod(var,3) quitPy