1Graphical iInterface

 

2Function

The <insert> block allows you to add an element to a specific index in a list; it directly references the Python function: .insert()

See the Python documentation for more details.

3Inputs

4Output

5Types

The “list” input and output are of type list

The “index” input is of type int

The “elem” input can be of any type

6Usage

Since “list” output = “list” input.insert(“index”, “elem”), after the block executes, the two lists are identical