最佳答案
如何从numpy数组中删除一些特定的元素?说我有
import numpy as np
a = np.array([1,2,3,4,5,6,7,8,9])
然后我想从a
中删除3,4,7
。我所知道的是值的索引(index=[2,3,6]
)。