Menu
Coddy logo textTech

What is Numpy?

Lesson 1 of 18 in Coddy's Numpy Fundamentals course.

Numpy (stands for "Numerical Python") is a third-party library of Python designed for scientific computing.


Python is a high-level programming language that uses a list as its main collection data structure.  Lists are flexible, they can grow, shrink, mix types, etc. It is much slower compared to other language collections such as C and C++. To make Python vectors and array computations faster and more efficient, Numpy was written in C. Knowing Numpy can significantly improve your code and reduce the complexity of programs.

To use the module import it and name it np

import numpy as np

Numpy official site: Link

quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

Try it yourself

This lesson doesn't include a code challenge.

All lessons in Numpy Fundamentals