num_array = np.array(texts1) float_array = num_array.astype(np.float32)
时间: 2023-11-20 10:06:12 浏览: 94
MISRA_C_2012.txt
5星 · 资源好评率100%
好的,您的问题是将一个列表转换为NumPy数组,并将其中的元素转换为32位浮点数。代码如下:
```
import numpy as np
texts1 = ['1.2', '3.4', '5.6']
num_array = np.array(texts1)
float_array = num_array.astype(np.float32)
print(float_array)
```
输出为:
```
[1.2 3.4 5.6]
```
请问还有其他问题吗?
阅读全文