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

Numpy

About Numpy

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

Numpy stands for Numerical Python. It is a very popular scientific calculations library written in Python and C.
The use of numpy is to manipulate arrays and provides various functions/methods which can be performed on these arrays.

  • array()
  • arange()
  • linspace()
  • mathematical functions as in sin, cos, sum etc....
  • random function

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] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········
[jovian] Error: The current API key is invalid or expired.
[jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Updating notebook "abhishek-dobliyal/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/abhishek-dobliyal/numpy-array-operations

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