Get Elements From List

Allows you to retrieve a range of values from a list.

Key: specify which key you would like to reference.

Start: identifies the start of the elements you would like to retrieve.

Stop: identifies the end of the elements you would like to retrieve.

You can use negative values to represent the end of the list (ex. -1 is the last element, -2 is the second to last, and so on). The start and stop parameters are also inclusive. This means that the results you are given will include the elements at the positions you start and end with.

Last updated