Imports and returns the python module passed.
pyImport("Module_Name")
The module to be imported like numpy, builtins etc.
Imports a python module and is assigned to a variable, which can be later used by the variable.
startPy Py = pyImport("builtins") var = Py.complex(1,2) quitPy