I want a list of 2D arrays(or matrices) where the values can be modified in each of its elements individually. So, I did the following :
w=zeros((3,3)), v=3*[w], v[1][1,1]=1
But the result I get is that the (1,1)th element of each of the 3 entries of v are changed to 1. How do I solve this issue? I tried converting it to matrix but it didn't help.