Question: - PROBLEM 3: Slicing Practice (10 pts) Given a matrix input_matrix, return a Numpy array that consists of every entry of A that has: an

- PROBLEM 3: Slicing Practice (10 pts) Given a matrix input_matrix, return a Numpy array that consists of every entry of A that has: an even row index in the range [0, 7) an odd column index in the range (3, 8) This can be accomplished in a single line. | def PROBLEM3 (input_matrix): # YOUR CODE GOES HERE return output_matrix # DO NOT MODIFY np.random.seed (3251) example = np.random.randint(0, 10, (10,10)) print(example) print(PROBLEM3 (example))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
