📌  相关文章
📜  pandas 科学记数法 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:08.599000             🧑  作者: Mango

代码示例1
In [25]: pd.set_option('display.float_format', lambda x: '%.3f' % x)

In [28]: Series(np.random.randn(3))*1000000000
Out[28]: 
0    -757322420.605
1   -1436160588.997
2   -1235116117.064
dtype: float64