adds an element at the end of the list
.append()
returns the number of elements with the specified value in the ()
.count()
add the element of a list (or any utterable) to the end of the current list
.extend()
returns the index of the first element with the specified value ()
.index()
adds an element at the specified position
.insert()
Removes the element at the specified position
.pop()
Removes the first item with the specified value
.remove()
reverses the order of the list
.reverse()
sorts the list
.sort()