Getting Started with various Tools

8 / 43

Numpy

Purpose: NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays.

Home Page: https://numpy.org/

Documentation: https://numpy.org/doc/stable/

Related resources to learn: https://cloudxlab.com/assessment/playlist-intro/832/ml-prerequisites-numpy?course_id=124&playlist_id=832

How to get started:

  1. In the Notebook tab on the right side of the screen, make sure to be using Python3 Kernel. If not, you may change the kernel to Python3 as follows:

    Click on Kernel -> Change Kernel -> Python3 from the menu at the top

  2. Type the following code to import Numpy

    import numpy as np
    
  3. Type the below code to check the version of Numpy

    np.__version__
    

No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...