python 不以科学计数法输出的方法

其实很简单只需两个语句:

import numpy as np
np.set_printoptions(suppress=True)

这样就可以搞定

相关推荐