Divides two variables.
pyDiv(arg0, arg1)
Variable 1 acts as dividend
Variable 2 acts as divisor
Divides the two arguments and returns the result; equivalent to arg1 / arg2. Arguments can be of type int, double, string, bool or python variable.
startPy py("a = 5") var = pyGet("a") pyDiv(var,3) quitPy