bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

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

NumPy Tutorial

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind NumPy Tutorial?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ numpy as np
3Order

Put the learning moves in the order that makes the concept easiest to apply.

NumPy is used for working with arrays.
NumPy is a Python library.
Learning by Reading

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