Import NumPy Library

Import the NumPy library in your code and make it accessibaly as np to solve the exercise.
# import numpy here
import
a = np.array([1, 2, 3, 4, 5, 6]) print(a)
Python
Setting up Python environment...
Output