python在数组narry中找到0值的索引,并删除0值

python在数组narry中找到0值的索引,并删除0值

例如想要删除数组yTest中的0值,使用下面的代码:

b = np.argwhere(yTest==0)
yTest = np.delete(yTest, b)
不要使用del的方法,那是删除列表中元素的方法。

你可能感兴趣的:(python,python)