NumPy is a general purpose array processing library for the Python programming language, adding support for large, multi-dimensional arrays and matrices.
It is used to solve scientific or mathematical problems.
It provides great support along with a large collection of high-level mathematical functions.
Some of the known Scientific Languages :: MATLAB, ALGOL, FORTRAN
NumPy Installation:
In this video we are going to learn some useful basic functions in NumPy:
1. arange()
2. linspace()
3. zeros()
4. ones()
5. empty()
6. identity()
7. eye()
Pip install numpy
Conda install numpy
What is the difference between array and list in python
There is only one difference that an array is data structure that stores values of same data types.
Whereas list contains different data types.