array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']
variable = []
#use numpy
import numpy #if you don't have it do pip install numpy
array = numpy.array(["Ford", "Volvo", "BMW"] )
arr = [1,'string',None,True]
#arrays and lists are different
#numpy arrays are faster
this_is_a_list = [1, 2, 3]
import numpy #is you do not have it do pip install numpy
this_is_an_array = numpy.array([1, 2, 3])
#I will make an array and the contents will be called "Hello", "Nice", "Cool"
#Array
#By the way, you can make whatever variable name you want.
#I will also print the array
#Making the Array
variable = ["Hello", "Nice", "Cool"]
#printing the array
print(variable)
array_of_fruits = ["Banana", "Apple", "Mango"]
#prints: ["Banana", "Apple", "Mango"]
array.append("Orange")
#prints: ["Banana", "Apple", "Mango", "Orange"]