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))