Write a NumPy program to access last two columns of a multidimensional columns.
import numpy as np arra = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print(arra) result = arra[:,[1,2]] print(result)
Sample Output:
[[1 2 3] [4 5 6] [7 8 9]] [[2 3] [5 6] [8 9]]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer