Python List Methods

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

PYTHON

List Methods @AbzAaron

APPEND
Add single element to
end of list

CLEAR
Remove all Items from
list

COPY
Return shallow copy of
list

COUNT
Return count of an
element in list

EXTEND
Adds iterable elements
to end of list

INDEX
Return index of first element
in list matching given value

INSERT
Insert element to list at
given index

POP
Remove element at given
index and returns it

REMOVE
Remove first item from
list that has given value

REVERSE
Reverse the list

SORT
Sort elements of a list

You might also like