Home / Python Array / How to Loop Through All Elements of Array in Python In this example we will show how to loop through all the elements of an array in Python. Source Code letter = ['a', 'b', 'c', 'd'] for item in letter: print(item) Output: a b c d