I have mat = [[0]*5]*5 to create a 2-d matrix of all zeros. 
When I do mat[0][0] = 1, I want it to be only
[[0, 1, 0, 0, 0],
 [0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0], 
 [0, 0, 0, 0, 0]]
but when I print mat, I get:
[[0, 1, 0, 0, 0],
 [0, 1, 0, 0, 0],
 [0, 1, 0, 0, 0],
 [0, 1, 0, 0, 0], 
 [0, 1, 0, 0, 0]]
How do I access an individual element?
