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], [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
The Python program shown in the image is performing elementwise subtraction of two matrices X and Y ... View full answer
Get step-by-step solutions from verified subject matter experts
