Learn practical skills, build real-world projects, and advance your career

###Numpy Array Operations

Write a short introduction about Numpy and list the chosen functions.

Numpy is a powerful library in python. It is a general purpose array processing package. It is also used as a multi-dimensional for generic data. It gives us tools to work with these arrays.

  • np.dot
  • np.shape
  • np.reshape
  • np.sum
  • np.array_split

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Creating a new project "adithyanovak2001/numpy-array-operations" [jovian] Uploading notebook.. [jovian] Committed successfully! https://jovian.ai/adithyanovak2001/numpy-array-operations

Let's begin by importing Numpy and listing out the functions covered in this notebook.