python array create code example

Example 1: how to create an array in python

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

Example 2: 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 3: arrays in python

# In python, arrays are actually called lists. Same thing tho
list_or_array = [1.0, 2, '3', True, [1, 2, 3, 4]]
"""
So, list can contain floats, integers, strings, booleans, nested lists, and 
practically any other datatype
"""