September 2019
Intermediate to advanced
420 pages
10h 29m
English
Once you start a new IPython or Jupyter session, you can import the NumPy module and verify its version as follows:
In [1]: import numpyIn [2]: numpy.__version__Out[2]: '1.15.4'
For the parts of the package discussed here, I would recommend using NumPy version 1.8 or later. By convention, you'll find that most people in the scientific Python world will import NumPy using ...
Read now
Unlock full access