Learn practical skills, build real-world projects, and advance your career
!pip install numpy
Requirement already satisfied: numpy in c:\users\john afolabi\anaconda3\lib\site-packages (1.19.2)
import numpy as np
array_1 = np.ones(2)
array_1
array([1., 1.])
array_1 = np.ones(6)