Python:ndarray中删除某个元素

import numpy as np

a = np.array([5,4,3,2,1])
b = list(a)
a = np.delete(a,b.index(2))
print(a)

 

你可能感兴趣的:(Python学习)