0

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

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

如何向其中添加另一个字符串?以及如何通过索引访问该字符串?

4

1 回答 1

2

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

例如,

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

将插入c.a

于 2013-03-09T22:15:59.343 回答