以任何方式避免python输出中的e值/实值。即我可以代替9.586945e + 05获得实际的浮点值

时间:2019-07-02 14:58:18

标签: python python-3.x

我正在研究一个问题,即将数据分组到数据框中并找出均值。

o / p值的格式为9.586945e + 05,但我需要实际的浮点值而不是电子符号。

这是查询和预期的o / p

master_frame.groupby(['funding_round_type'])['raised_amount_usd'].mean()

funding_round_type
angel                    9.586945e+05
convertible_note         1.453439e+06
Name: raised_amount_usd, dtype: float64

我知道format可以删除e并获取实际的float值。我只想知道是否可以通过某种方式格式化查询本身中的值,以使o / p已经格式化。

master_frame.groupby(['funding_round_type'])['raised_amount_usd'].mean()

0 个答案:

没有答案