标签: python numpy formatting string-formatting
打印数组时,Numpy用0替换尾随,例如
0
[-0.678231 -0.618304 -0.6077 0.014845]
如何修复此问题并将其打印为0 s?
答案 0 :(得分:2)
您可以使用numpy的set_printoptions和自定义格式化程序来设置输出的精确度和确切格式;对于你的情况,
set_printoptions
np.set_printoptions(formatter={'float': '{: 0.3f}'.format})
应该做的伎俩。