Imports and returns the python module passed.
pyImport(string 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.
--> Py = pyImport("builtins") Py = <module 'builtins' (built-in)> --> var = Py.complex(1,2) var = (1+2j)