Accessing values from a list is done by using indices. Indices are numbers that are assigned to each value in the list based on their position. It begins from 0 and goes on until the length of the list - 1.
Note that Python will throw an error if we try to access an index which does not exist.