Python List Methods - Definitions
insert()
Adds an element at a specified position (index) in the list. It shifts existing elements to the right.
remove()
Removes the first occurrence of a specified element (value) from the list.
append()
Adds a new element at the end of the list.
pop()
Removes and returns the element at a specified index. If no index is given, it removes the last
element.