All of the class methods in Python have the parameter self, meaning you will have access to the object’s attributes right away, and no variables were declared outside the constructor.
Common methods include np.array(your array here), np.zeros(), np.zeros((2,3)), np.flatten(name_of_array), np.tolist(name_of_array), np.sum(name_or_array), and np.prod(name_or_array).
Numpy is considered as one of the popular libraries for Machine Learning, AI, Computer Vision and other topics related on Computer Science, enabling you to manage/handle arrays, matrices and tensors in Python.
Any modules/packages/dependencies you've installed after activating the environment, the files associated to modules/packages is located in the environment folder created.
To configure an X-Y graph using pyplot methods, follow the steps: plot accepts the array/matrix/tensor to be displayed, xlabel and ylabel set the name of the x and y axis, and show is needed to display the whole plot in a window.