Home / Python Array / How to Access Elements of an Array in Python In this example we will show how to access the elements of an array by referring to the index number in Python. Source Code letter = ['a', 'b', 'c', 'd'] letter_2 = letter[1] print(letter_2) Output: b