Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCharan sai
Courses Plus Student 797 PointsHow to multiply two multidimensional lists like multiplication of matrices??
I need to store two 3*3 matrices in two variables each
If I want to multiply them what should I do??
1 Answer
Steven Parker
231,236 PointsI'm not sure what you mean by "two variables each". How do you use two variables to store a 3x3 matrix?
But assuming they were stored in one variable each, named "X" and "Y", here's one way:
result = [[sum(a*b for a,b in zip(X_row,Y_col)) for Y_col in zip(*Y)] for X_row in X]
There's also a popular library called "NumPy" (taught in courses here) that would have methods for this.
I hope I didn't just do your homework!