In this post we will cover the basics of numpy arrays. We will also see how to declare, access,view the size , shape and dimension of the numpy arrays.What you will not find is the operations to be performed on or using the arrays. Hello Friends, Today we are going to take a look at the basics of Numpy arrrays. But before proceeding further if you have no detail about what numpy is then no worries, there is a post specifically for this purpose.It introduces you to numpy and gives you a brief idea about what it is. The link for that post is -->> Introduction to NumPy Moving on lets get into the details of the arrays. For using the numpy arrays first step is have numpy. As in you should first import numpy. I am going to show the following code in jupyter notebook which was installed during anaconda installation.NumPy was later installed using the following command: pip install numpy Now we are done with the initial step. Next step is to define numpy array. ...