相关文章推荐
要出家的牙膏  ·  CHARINDEX ...·  1 年前    · 

python float to string 科学计数法

在 python 中,可以使用 '{:.2f}'.format(x) 将 float 类型转换为字符串,其中 x 是需要转换的 float 变量,'.2f' 表示保留小数点后两位。

x = 123456789.123456
s = '{:.2f}'.format(x)
print(s)
# 输出:123456789.12

如果需要将浮点数转换为不带科学计数法的字符串,可以使用 '{:g}'.format(x)。

x = 123456000.123456
s = '{:g}'.format(x)
print(s)
# 输出:123456000.123456
        MongoDB