Executes python statements.
py(string code)
A string containing simple python statements.
Executes simple python statements and returns the output. Variables declared here can be accessed through pyGet().
py("a = 50; b = a**2;print(b)")
The output for the above code is
ans = "2500 "