python 下利用numpy模块,定义了一个float32位的数组,如何转换成string类型呢?尝试用了array.tostring()的方法,但是debug下看到输出结果是全为0的字符串.这是为什么呢?我的python版本是3.4
1 回答
乱舞的旋律
TA贡献105条经验 获得超38个赞
用numpy 就好好用numpy的语法跟函数
arr.astype('str')
arr.astype('string')
arr.astype(np.str)
arr.astype(np.string)
都可以
添加回答
举报
0/150
提交
取消