The <geti> block is used to read an element at a specific index in a list; it is equivalent to the following Python code: =list[index]
See the Python documentation for more details.
•« list » : This is the list from which you want to read an element; the default value is an empty list.
•« index » : the index in the list pointing to the element to be read
•« elem » : the element read,
The “list” input type is list
The “index” input type is int