Home / Python Array / How to Create an Array in Python In this example we will show how to create an array in Python. Source Code letter = ['a', 'b', 'c', 'd'] print(letter) Output: ['a', 'b', 'c', 'd']