Question: Code says final answer is incorrect. What is wrong with my code? 1 . 2 [ 2 pt ] Write a function called det _

Code says final answer is incorrect. What is wrong with my code?
1.2[2 pt] Write a function called det_and_inv that takes as an input a square matrix (a numpy array) and returns a tuple with two elements (a) the determinant, and (b) the inverse if it mathematically exists and the string "does not exist" otherwise.
import numpy as np
def det_and_inv(square_matrix):
det =np* linalg.det(square_matrix)
try:
inv=np.linalg.inv(square_matrix)
except np.linalg.LinAlgError:
inv="does not exist"
return det,inv
 Code says final answer is incorrect. What is wrong with my

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!