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

Assignment 2 - Five simple NumPy funtions which I found interesting

What is NumPy? and Why NumPy?

NumPy is the one of the core package/library available in Python for scientific computing. It provides a lot of pre-defined functions of mathematical, logical, shape manipulation, sorting, basic statistical operations etc. and much more.

As a part of this assignment I have chosen 5 NumPy functions which I found interesting for me to work with,

    1. Logical XOR
    1. Array Equal comparision
    1. Mean of a given array (ignoring NaNs)
    1. LCM
    1. GCD
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Updating notebook "rakshith-kamath15/numpy-array-operations" on https://jovian.ai [jovian] Committed successfully! https://jovian.ai/rakshith-kamath15/numpy-array-operations

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