append() | Adds an element to the end of the list. |
insert() | Adds an element at a specific position. |
remove() | Removes the first occurrence of an element. |
pop() | Removes and returns the element at a specific index. |
sort() | Sorts the elements of the list in ascending order. |
reverse() | Reverses the order of elements in the list. |
clear() | Removes all elements from the list |