If I were to make a 3x5 matrix in two ways
Matrix#1 A1 = [5*[0]]*3
Matrix#2 A2 = [5*[0] for i in range(3)]
and I changed the value of A[1][.2] to 2 usin