當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。