bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/Python/Data Science and Scientific Python
Python•Data Science and Scientific Python

NumPy Tutorial

Learn NumPy

NumPy is a Python library.

NumPy is used for working with arrays.

NumPy is short for "Numerical Python".

Learning by Reading

We have created 43 tutorial pages for you to learn more about NumPy.

Starting with a basic introduction and ends up with creating and plotting random data sets, and working with NumPy functions:

ufunc

Example

import numpy as np

arr = np.array([1, 2, 3, 4, 5])
print(arr)

print(type(arr))

Next

Matplotlib Tutorial