Let me say, I have an array with some values
>>>a=['Sachin','Dhoni','Virat','Raina']
If I want to access the first element in that array, we can use '[0]'.
>>>a[0]
'Sachin'
>>>a[1]
'Dhoni'
So, a[0] will access the first element of the array.
Do you want to be a Python Expert? Just come and join the Python course
To know more related about this topic, you can also at the following video tutorial: