如果我有一個numpy的數組是這樣的:格式化漂浮在numpy的陣列
[2.15295647e+01, 8.12531501e+00, 3.97113829e+00, 1.00777250e+01]
我怎樣才能讓我結束了一個numpy的陣列這樣的移動小數點和數字的格式:
[21.53, 8.13, 3.97, 10.08]
np.around(a, decimals=2)
只給我[2.15300000e+01, 8.13000000e+00, 3.97000000e+00, 1.00800000e+01]
我不想要的,我還沒有找到另一種方式來做到這一點。
可能的重複[如何漂亮打印numpy.array沒有科學記數法和給定的精度?](http://stackoverflow.com/questions/2891790/how-to-pretty-printing-a-numpy- array-without-scientific-notation-and-with-given) –