解决python中 ndarray 默认用科学计数法显示的问题

机器环境:

Python 3.6.4

numpy==1.14.0

pandas==0.22.0



解决方法:

  np.set_printoptions(suppress=True)



默认情况下,ndarray数组采用科学计数法显示:





加入代码后:








你可能感兴趣的:(mac相关)