Lists
Python knows a number of compound data types, used to group together other values. The most versatile is the list, which can be written as a list of comma-separated values (items) between square brackets. Lists might contain items of different types, but usually the items all have the same type.
Creating and Initialising Lists
We can inialise a list in the following ways:
By enclosing elements in [ ].
Using other Lists
List comprehension
Using built-in object
Indexing
Lists can be indexed (subscripted), with the first element having index 0:
Indices may also be negative numbers, to start counting from the right:
Slicing
Syntax of list slicing is
lst[start : stop : steps]
.which means that slicing will start from index start will go up to stop in step of steps.
Default value of start is 0, stop is last index of list and for step it is 1.
Traversing a List
Traversing a list means accessing all the elements of the list one after the other by using the subscript. A list can be traversed using a 'for' loop or a 'while' loop.
Appending elements to a list
Appending a list is adding more element(s) at the end of the list. To add new elements at the end of the list, Python provides a method append()
.
Updating list elements
Unlike strings, which are immutable, lists are a mutable type, i.e. it is possible to change their content:
Concatenation(+) And Repetitions(*)
As lists are sequences, they support many operations of strings. For example, operator + & * results in concatenation & repetition of lists. Use of these operators generate a new list.
Deleting Elements
It is possible to delete/remove element(s) from the list. There are many ways of doing so:
If index is known, we can use pop ( ) or del.
If the element is known, not the index, remove ( ) can be used.
To remove more than one element, del ( ) with list slice can be used.
Using assignment operator.
list.pop([i])
Remove the item at the given position in the list, and return it. If no index is specified, a.pop()
removes and returns the last item in the list.
list.remove(x)
Remove the first item from the list whose value is x. It is an error if there is no such item.
The del statement
There is a way to remove an item from a list given its index instead of its value: the del
statement. This differs from the pop()
method which returns a value. The del
statement can also be used to remove slices from a list or clear the entire list (which we did earlier by assignment of an empty list to the slice). For example:
Using Assignment operator
A slice can be equated to an empty list which implicitly deletes the slice:
Other list methods
list.insert(i, x)
Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x) inserts at the front of the list, and a.insert(len(a), x) is equivalent to a.append(x).
list.reverse()
Reverse the elements of the list, in place.
list.sort(key=None, reverse=False)
Sort the items of the list in place (the arguments can be used for sort customization).
sorted(iterable[, cmp[, key[, reverse]]])
sorted()
function also behaves in similar manner except for it produce a new sorted list, so original is not changed.
Last updated
Was this helpful?