numpy.float64转成str
时间: 2023-04-23 13:04:25 浏览: 682
float转str程序
可以使用Python内置的str()函数将numpy.float64类型的数据转换为字符串类型。例如:
```python
import numpy as np
x = np.float64(3.1415926)
s = str(x)
print(s)
```
输出结果为:
```
3.1415926
```
另外,如果需要控制字符串的格式,可以使用Python内置的格式化字符串方法。例如:
```python
import numpy as np
x = np.float64(3.1415926)
s = f"{x:.2f}"
print(s)
```
输出结果为:
```
3.14
```
其中,":.2f"表示保留两位小数的浮点数格式。更多格式化字符串的用法可以参考Python官方文档。
阅读全文