如何将字符串添加到numpy字符串ndarray

时间:2013-03-09 21:48:18

标签: python numpy

如果我有一个ntype字符串的numpy ndarray:

from numpy import array as narray
a = narray(['a', 'b'])

如何添加其他字符串?我如何通过索引访问该字符串?

1 个答案:

答案 0 :(得分:1)

查看http://docs.scipy.org/doc/numpy/reference/generated/numpy.insert.html

例如,

numpy.insert( a, 2, 'c' )

会在c中的第2位插入a