Creates a python tuple.
pyTuple(arg0, arg1…)
Value at index 0 of the Tuple
Value at index 1 of the Tuple
--> X = pyTuple(1,2,"Hello",3) X = (1, 2, 'Hello', 3) --> disp(X(0)) 1 --> disp(X(2)) 'Hello'