Python Numpy Delete Function Пример удаления из 1D массива
# welcome to softhunt.net
# Python Program illustrating
# numpy.delete()
import numpy as np
#Working on 1D
arr = np.arange(5)
print("arr : \n", arr)
print("Shape : ", arr.shape)
# deletion from 1D array
object = 2
a = np.delete(arr, object)
print("\ndeleteing {} from array : \n {}".format(object,a))
print("Shape : ", a.shape)
object = [1, 2]
b = np.delete(arr, object)
print("\ndeleteing {} from array : \n {}".format(object,a))
print("Shape : ", a.shape)
Outrageous Ostrich