NumPy is the fundamental package for scientific computing with Python.
Basics <a name="basics"></a>
One of the most commonly used functions of NumPy are NumPy arrays: The essential difference between lists and NumPy arrays is functionality and speed. lists give you basic operation, but NumPy adds basic statistics, linear algebra, histograms, etc.</br>
The most important difference for data science is the ability to do element-wise calculations with NumPy arrays.
axis 0 always refers to row </br>
axis 1 always refers to column
Operator