1Graphical interface

 

2Function

The <pop> block removes an element at a specific index from a list while returning the element to be removed; it directly references the Python function: .pop()

See the Python documentation for more details.

3Inputs

4Outputs

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 “elem” = “list”input.pop(“index”), after the block executes, the two lists are identical.