Executes a python file at a given location.
pyExec(string file_location)
The location to .py file as a string.
Executes a python file (of format .py) in scilab environment and variables are accessible through pyGet.
example.py code:
a = 5; print(a);
--> pyExec("D:\example.py") ans = "5 "