python 浮点数转字符串
时间: 2023-09-01 11:10:56 浏览: 275
Python字符串转换成浮点数函数分享
可以使用字符串格式化来将浮点数转换为字符串,其语法为:
```
format(value, format_spec)
```
其中,`value` 是要转换的浮点数,`format_spec` 是格式化字符串,控制输出的格式。
例如,将浮点数 `3.14159` 转换为字符串,保留两位小数的格式,可以使用以下代码:
```
x = 3.14159
s = "{:.2f}".format(x)
print(s)
```
输出结果为:
```
3.14
```
其中,`{:.2f}` 表示将浮点数保留两位小数的格式。
阅读全文