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


Python numpy.printoptions()用法及代码示例


借助numpy.printoptions()方法,我们可以获得自定义打印选项,就像我们可以通过使用设置浮点数值的精度一样numpy.printoptions()方法。

用法: numpy.printoptions(precision=value)
返回:Return the customized printing like precision.

范例1:
在这个例子中,我们可以通过使用numpy.printoptions()方法,我们能够获得自定义的打印选项,就像我们可以设置精度值一样。


# import numpy 
import numpy as np 
  
# using numpy.printoptions() method 
with np.printoptions(precision = 3):
     print(np.array([1, 2, 3])/2.38)

输出:

[0.42 0.84 1.261]

范例2:

# import numpy 
import numpy as np 
  
# using numpy.printoptions() method 
with np.printoptions(precision = 5):
     print(np.array([[5, 10, 15], [20, 25, 30], [35, 40, 45]])/2.3865)

输出:

[[ 2.09512 4.19024 6.28536]
[ 8.38047 10.47559 12.57071]
[14.66583 16.76095 18.85607]]



相关用法


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