In [1]:
import numpy as np

x = np.array([1.0, 2.0, 3.0])
print(x)


[ 1.  2.  3.]

In [2]:
type(x)


Out[2]:
numpy.ndarray

In [ ]: