Write a program to delete the second column from the following array and insert the following new column in its place, a
Posted: Tue Jul 12, 2022 8:21 am
Write a program to delete the second column from the followingarray and insert the following new column in its place, and printthe result. original_array = numpy.array( [[34 43 73] [82 22 12] [53 94 66]]) new_column = numpy.array([[10,10,10]]) After insertion, your array should look like: [[34 10 73] [82 10 12] [53 10 66]]