|
2 |
edited tags
|
||
|
1 |
|
||
Creating lists of lists in a pythonic wayI'm using a list of lists to store a matrix in python. I tried to initialise a 2x3 Zero matrix as follows.
However, when I change the value of one of the items in the matrix, it changes the value of that entry in every row, since the id of each row in
I know I can create the Zero matrix using a loop as follows,
but can anyone show me a more pythonic way?
|
||||
