{ "cells": [ { "cell_type": "markdown", "metadata": { "ExecuteTime": { "end_time": "2021-05-27T18:42:32.348446Z", "start_time": "2021-05-27T18:42:32.329894Z" } }, "source": [ "\n", "All the IPython Notebooks in this lecture series by Dr. Milan Parmar are available @ **[GitHub](https://github.com/milaan9/09_Python_NumPy_Module)**\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Python NumPy Array: \n", "\n", "A numpy array is a grid of values, all of the same type, and is indexed by a tuple of nonnegative integers. The number of dimensions is the rank of the array; the shape of an array is a tuple of integers giving the size of the array along each dimension.\n", "\n", "Numpy array is a powerful N-dimensional array object which is in the form of rows and columns. We can initialize NumPy arrays from nested Python lists and access it elements." ] }, { "cell_type": "markdown", "metadata": { "ExecuteTime": { "end_time": "2021-05-27T18:42:42.296170Z", "start_time": "2021-05-27T18:42:42.277617Z" } }, "source": [ "## NumPy Array Types:\n", "\n", "