Return a string representation of an array.
a : ndarray
Input array.
max_line_width : int, optional
Inserts newlines if text is longer than max_line_width.
precision : int, optional
If a is float, precision sets loating point precision.
suppress_small : boolean, optional
Represent very small numbers as zero.
See also
array2string, array_repr
Examples
>>> np.array_str(np.arange(3)) >>> '[0 1 2]'
numpy.array_repr
numpy.memmap