📜  Python| numpy.printoptions() 方法

📅  最后修改于: 2022-05-13 01:54:21.076000             🧑  作者: Mango

Python| numpy.printoptions() 方法

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

示例 #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)

输出 :

示例 #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)

输出 :