标签: python
我无法将“def def(question)”函数的结果转换为十进制值而不是科学。
我尝试将结果转换为字符串,但这不起作用,我无法看到格式化pricex变量的位置。
非常感谢任何帮助
Code
Result
答案 0 :(得分:1)
您需要使用格式化字符串。
>>> import math >>> print(math.pi) 3.141592653589793 >>> print("{:.2f}".format(math.pi)) 3.14