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

'''
Assignment 2

Numpy is a library in Python used for scientific computing. It allows us to easily create and manipulate N-dimensional arrays.

Numpy functions that I find to be very useful are:

  1. np.transpose
  2. np.unique
  3. np.reshape
  4. np.flip
  5. np.ravel

'''

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook..

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