Python has a set of built-in methods that you can use on lists.
Learn more about list in Python List Tutorial.
Method | Description |
append() | Adds an item to the end of the list |
insert() | Inserts an item at a given position |
extend() | Extends the list by appending all the items from the iterable |
remove() | Removes first instance of the specified item |
pop() | Removes the item at the given position in the list |
clear() | Removes all items from the list |
copy() | Returns a shallow copy of the list |
count() | Returns the count of specified item in the list |
index() | Returns the index of first instance of the specified item |
reverse() | Reverses the items of the list in place |
sort() | Sorts the items of the list in place |