<< pySet scithon quitPy >>

scithon >> scithon > pyTuple

pyTuple

Creates a python tuple.

Syntax

pyTuple(arg0, arg1…)

Arguments

arg0

Value at index 0 of the Tuple

arg1

Value at index 1 of the Tuple

Example

--> X = pyTuple(1,2,"Hello",3)
X  = 

(1, 2, 'Hello', 3)
--> disp(X(0))

1
--> disp(X(2))

'Hello'

Report an issue
<< pySet scithon quitPy >>