0):
+ operator to concatenate two lists. Example:
Members
append
Parameters
ParameterDescriptionitem
required
Item to add at the end.
clear
extend
Parameters
ParameterDescriptionitems
iterable;
required
Items to add at the end.
index
Parameters
ParameterDescriptionx
required
The object to search.
startint;
default is unbound
The start index of the list portion to inspect.
endint;
default is unbound
The end index of the list portion to inspect.
insert
Parameters
ParameterDescriptionindexint;
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
ParameterDescriptioniint;
default is -1
The index of the item.
remove
Parameters
ParameterDescriptionx
required
The object to remove.