CSE 142 Section 7

: Size of the list can be changed while that of the Numpy array can not.The numpy array is memory efficient. i.e takes less space than the python list even though both have the same 7 elements. Numpy is faster . Also numpy supports vetcorized operations while the list does not .ie. operation on the Numpy are applied on all the individual elements. ................
................