标签: python arrays numpy
是否有另一种方法可以创建一个充满字符的numpy数组,例如:
p = np.array( [' '] * 12 )
有没有办法使用np.full(...)?
np.full(...)
答案 0 :(得分:3)
是np.full可以与正确的数据类型(字符串)一起使用,就像这样 -
np.full
np.full((12), [' '],dtype=str)
您还可以使用np.repeat -
np.repeat
np.repeat([' '], 12)