Numpy 创建字符数组(矩阵)

import numpy as np
a = np.ones((3,4)) #3x4数组
b = a.astype(np.str) #转换成字符类型

你可能感兴趣的:(Python)