D:\FolderName\NumPy> pip install numpy
import numpy as np
as: In Python, an alias is created to refer the same thing in an easier way.
import numpy as np array = np.array(object=[1, 2, 3, 4, 5, 6, 7, 8, 9, 0]) print(array) #Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]