numpy.printoptions #

麻木的。printoptions ( * args , ** kwargs ) [来源] #

用于设置打印选项的上下文管理器。

设置with块范围的打印选项,并在最后恢复旧选项。请set_printoptions参阅 参考资料 获取可用选项的完整说明。

例子

>>> from numpy.testing import assert_equal
>>> with np.printoptions(precision=2):
...     np.array([2.0]) / 3
array([0.67])

with语句的 as 子句给出当前的打印选项:

>>> with np.printoptions(precision=2) as opts:
...      assert_equal(opts, np.get_printoptions())