# -*- coding: utf-8 -*- """ Created on Mon Nov 7 11:32:46 2022 @author: cpresser """ """ Python for Scientific Computing numPy library for computing fast algorithms/programs with access from python. efficient data storage data stored in arrays (like lists) everything in an array is the same type all array data is stored together """ import numpy as np #Python Lists - can hold anything list1 = [3, 5, 7, 2.4, True, "Wednesday"] list2 = [3.4, 6, 2.3] #convert list2 into a numpy array array2 = np.array(list2) print(list2) print(array2) array1 = np.array(list1) print(list1) print(array1) #access an item print(list2[0]) print(array2[0])