...

/

What is NumPy?

What is NumPy?

This lesson gives a brief introduction to what is NumPy and explains data types in NumPy.

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.

Data type


Type Name Bytes Description
bool b 1 Boolean (True or False) stored as a byte
int l 4-8
...