stateless

Changing nested element in matrix only using constants python

Changing nested element in matrix only using constants python Question: Hi I was working with a matrix in python call it a : a = [ [0,0,0], [0,0,0], [0,0,0] ] I would like to change the element on the second row in the first column (a[1][0]) to 1 yielding the following result : a = …

Total answers: 3