List methods

There are many list methods in Python. The most used ones are listed below:

.append(): Add an entry to the end of the list
.clear(): Delete all entries in the list
.copy(): Create a copy
.count(): Return the number of existing list entries
.extend(): Add all list entries to another list
.index(): Search for element in list and returns index (numbers start at 0!)
.insert(): Insert an entry at the given index number (following entries are moved to the end)
.pop(): Delete the entry from the list of the passed index and returns its content as return value
.remove(): Delete the entry from the list (in contrast to pop() the value and not the index is passed)
.sort(): Sort the list in desired form