如何在Python中将科学数字格式化为十进制格式?

时间:2016-09-23 14:34:28

标签: python

我无法将“def def(question)”函数的结果转换为十进制值而不是科学。

我尝试将结果转换为字符串,但这不起作用,我无法看到格式化pricex变量的位置。

非常感谢任何帮助

Code

enter image description here Result

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用格式化字符串。

>>> import math
>>> print(math.pi)
3.141592653589793
>>> print("{:.2f}".format(math.pi))
3.14