A list is a standard datatype of python that can store a sequence of values belonging to any type. The lists are depicted through square brackets.
Lists are mutable sequence having a progression of elements. There must be a way to access its individual elements and certainly there is.
We can easily access elements of the list by its index.
syntax:
list=[] print(list[index number])
e.g.,
l=[1, 2, 3, 4, 5, 6, 7, 8, 9] print(l[3])
Output- 4

This is how we access elements of the list in python.