vote up 2 vote down star

I'm using a list of lists to store a matrix in python. I tried to initialise a 2x3 Zero matrix as follows.

mat=[[0]*2]*3

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 mat is the same. For example, after assigning

mat[0][0]=1

mat is [[1, 0], [1, 0], [1, 0]].

I know I can create the Zero matrix using a loop as follows,

mat=[[0]*2]
for i in range(1,3):
mat.append([0]*2)

but can anyone show me a more pythonic way?

flag

There should be one-- and preferably only one --obvious way to do it. ;-) – Ubiquitous May 28 at 21:06

5 Answers

vote up 6 vote down check

Try this:

>>> cols = 6
>>> rows = 3
>>> a = [[0]*cols for _ in [0]*rows]
>>> a
[[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]
>>> a[0][3] = 2
>>> a
[[0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]

This is also discussed in this answer:

>>> lst_2d = [[0] * 3 for i in xrange(3)]
>>> lst_2d
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
>>> lst_2d[0][0] = 5
>>> lst_2d
[[5, 0, 0], [0, 0, 0], [0, 0, 0]]
link|flag
Thanks, that's what I was looking for! – Alasdair May 28 at 21:04
+1 - nice stuff. I'm just learning Python, so I greatly appreciate seeing snippets of "pythonic" code. – duffymo May 28 at 21:04
"[0]*rows" part is misleading; you're creating a list that is not used in any way except its length. Use either xrange(n) or (less likely) itertools.repeat(None, n) to do something n times in Python. – J.F. Sebastian Dec 9 at 22:25
vote up 2 vote down

This will work

col = 2
row = 3
[[0] * col for row in xrange(row)]
link|flag
vote up 0 vote down

What about:

m, n = 2, 3
>>> A = [[0]*m for _ in range(n)]
>>> A
[[0, 0], [0, 0], [0, 0]]
>>> A[0][0] = 1
[[1, 0], [0, 0], [0, 0]]

Aka List comprehension; from the docs:

List comprehensions provide a concise way to create lists 
without resorting to use of     
map(), filter() and/or lambda. 
The resulting list definition tends often to be clearer    
than lists built using those constructs.
link|flag
vote up 4 vote down

Use a list comprehension:

>>> mat = [[0]*2 for x in xrange(3)]
>>> mat[0][0] = 1
>>> mat
[[1, 0], [0, 0], [0, 0]]

Or, as a function:

def matrix(rows, cols):
    return [[0]*cols for x in xrange(rows)]
link|flag
vote up 3 vote down

I use

mat = [[0 for col in range(3)] for row in range(2)]

although depending on what you do with the matrix after you create it, you might take a look at using a NumPy array.

link|flag
I'm going to explore NumPy at some point, but for my current problem, a list of list is enough. – Alasdair May 28 at 21:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.