Question: 22. What is a output of this Python program? (2 points) X=[[12,7,3], [4,5,6], [7,8,9]] Y = [[5,8,1], [6,7,3], [4,5,9]] result = [[0,0,0], [0,0,0], [0,0,0]]

22. What is a output of this Python program? (2 points) X=[[12,7,3], [4,5,6], [7,8,9]] Y = [[5,8,1], [6,7,3], 

22. What is a output of this Python program? (2 points) X=[[12,7,3], [4,5,6], [7,8,9]] Y = [[5,8,1], [6,7,3], [4,5,9]] result = [[0,0,0], [0,0,0], [0,0,0]] for i in range(len(X)): for j in range(len(X[0])): result[i][j]X[i][j] - Y[i][j] for r in result: print(r)

Step by Step Solution

3.50 Rating (163 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The Python program shown in the image is performing elementwise subtraction of two matrices X and Y ... View full answer

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 Programming Questions!