标签: python numpy
我知道
header = np.array(["AA","AC"],dtype='U2')
将创建一个numpy数组,其中包含由2个字母组成的字符串。
与之相比有何不同
header = np.array(["AA","AC"],dtype='|U2') ?
header = np.array(["AA","AC"],dtype='|U2')