Multidimensional Indexing and Slicing

Report a typo

Given the array, choose the correct expression that, when applied to the array, will result in the output [65 121 65].

array = np.array([[67, 234, 33, 65],
                  [333, 4, 7, 909],
                  [4, 1, 0, 121],
                  [72, 23, 53, 96],
                  [19, 87, 76, 65]])

X = # the expression
print(X)
Select one option from the list
___

Create a free account to access the full topic