用于将数组类型转换为Python中其他数组类型的astype

时间:2018-12-04 05:29:52

标签: python-3.x casting numpy-ndarray

int_arr = np.arange(5)
other_arr = np.array(['2.3','4.5'], dtype=np.float64)
int_arr.astype(other_arr.dtype)
int_arr.dtype

在上面的代码片段中,由于使用了 astype ,我希望将int_arr的类型强制转换为浮点型。但是int_arr仍将输出作为dtype('int64')

0 个答案:

没有答案