0):
+ operator to concatenate two lists. Example:
Members
append
Parameters
| Parameter | Description |
|---|---|
item | required |
clear
extend
Parameters
| Parameter | Description |
|---|---|
items | iterable; required |
index
Parameters
insert
Parameters
| Parameter | Description |
|---|---|
index | int; required The index of the given position. |
item | required The item. |
pop
index is specified, it removes and returns the last item in the list.
Parameters
| Parameter | Description |
|---|---|
i | int; default is -1 The index of the item. |
remove
Parameters
| Parameter | Description |
|---|---|
x | required The object to remove. |