You are viewing a single comment's thread. Return to all comments →
x = [ [1,2,3], [2,3,4], [1,1,1]] y = [ [4,5,6], [7,8,9], [4,5,7]] r = 0 c = 0 for i in x: for q in i: print(q+y[r][c]) c += 1 c = 0 r += 1
Seems like cookies are disabled on this browser, please enable them to open this website
Linear Algebra Foundations #1 - Matrix Addition
You are viewing a single comment's thread. Return to all comments →