declare an array in python code example

Example 1: python create array

variable = []

Example 2: how to create an array in python

array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']

Example 3: how to make an array in python

#use numpy
import numpy #if you don't have it do pip install numpy
array = numpy.array(["Ford", "Volvo", "BMW"] )

Example 4: declare array python

arr = [1,'string',None,True]

Example 5: how to do an array in python

#the other answers are correct I just printed mine like this! Hope it helps!

array = ["1st", "2nd", "3rd"]
print(array)

Example 6: python initialize array

array1 = [] #an empty array
array2 = list() #another empty arrat
array3 = ["1", "2", "3"] #array initialization with value
arrat4 = [x for x in range(1,11) #list comprehension