在Python中,可以使用numpy库中的astype()函数将int类型的Numpy数组转换为string类型。
具体步骤如下:
import numpy as np
arr = np.array([1, 2, 3, 4, 5], dtype=np.int32)
str_arr = arr.astype(str)
print(str_arr)
完整代码示例:
import numpy as np
arr = np.array([1, 2, 3, 4, 5], dtype=np.int32)
str_arr = arr.astype(str)
print(str_arr)
输出结果为:
['1' '2' '3' '4' '5']
这样就成功将int类型的Numpy数组转换为string类型。
领取专属 10元无门槛券
手把手带您无忧上云