numpy.printoptions
-
numpy.printoptions(*args, **kwargs)
[source] -
Context manager for setting print options.
Set print options for the scope of the
with
block, and restore the old options at the end. Seeset_printoptions
for the full description of available options.See also
Examples
>>> with np.printoptions(precision=2): ... print(np.array([2.0])) / 3 [0.67]
The
as
-clause of thewith
-statement gives the current print options:>>> with np.printoptions(precision=2) as opts: ... assert_equal(opts, np.get_printoptions())
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.15.4/reference/generated/numpy.printoptions.html