当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy printoptions用法及代码示例


本文简要介绍 python 语言中 numpy.printoptions 的用法。

用法:

numpy.printoptions(*args, **kwargs)

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

设置打印选项的范围阻止,并在最后恢复旧选项。看numpy.set_printoptions有关可用选项的完整说明。

例子

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

with-statement 的 as-clause 给出了当前的打印选项:

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

相关用法


注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.printoptions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。