Table of Contents
numpy.doc
numpy.lib
numpy.random
numpy.linalg
numpy.fft
numpy.polynomial
numpy.testing
numpy.f2py
numpy.distutils
ndarray
dtype
ufunc
ndarray.
Data-type of the array’s elements.
See also
numpy.dtype
Examples
>>> x array([[0, 1], [2, 3]]) >>> x.dtype dtype('int32') >>> type(x.dtype) <type 'numpy.dtype'>