Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

The Python program shown in the image is performing elementwise subtraction of two matrices X and Y ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Applied Regression Analysis And Other Multivariable Methods

Authors: David G. Kleinbaum, Lawrence L. Kupper, Azhar Nizam, Eli S. Rosenberg

5th Edition

1285051084, 978-1285963754, 128596375X, 978-1285051086

More Books

Students also viewed these Programming questions

Question

Assuming = 5, compute (a) P(6) (b) P(X Answered: 1 week ago

Answered: 1 week ago