March 2019
Intermediate to advanced
642 pages
22h 54m
English
Let's see how to create an array in Python:
>> import numpy as np
We just imported a necessary package, numpy. This is the fundamental package for scientific computing with Python. It contains, among other things, the following:
Besides its obvious uses, NumPy is also used as an efficient multidimensional container of generic data. Arbitrary data types can be found. This enables NumPy to integrate with different types of databases.
Read now
Unlock full access