Answers for "Python NumPy delete Function Example Deletion from 1D array"

0

Python NumPy delete Function Example Deletion from 1D array

# 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)
Posted by: Guest on April-25-2022

Code answers related to "Python NumPy delete Function Example Deletion from 1D array"

Python Answers by Framework

Browse Popular Code Answers by Language