Creates a python list.
pyList(arg0, arg1…)
Value at index 0 of the List
Value at index 1 of the List
Creates and returns a python list containing the arguments passed. Arguments can be of type int, double, string, bool or python variable.
startPy X = pyList(1,2,"Hello",3) disp(X(0)) disp(X(2)) quitPy