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']
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments