Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to define a Two-dimensional array without an initalized length like this :

Matrix = [][]

but it does not work.

I tried this, but it is wrong too:

>>Matrix = [5][5]

Matrix = [5][5]  # Recall 2nd parameter to zeros is the type
IndexError: list index out of range

What is my mistake?

share|improve this question
One does not define arrays, or any other thing. You can, however, create multidimensional sequences, as the answers here show. Remember that python variables are untyped, but values are strongly typed. – TokenMacGuy Jul 12 '11 at 16:05

7 Answers

up vote 13 down vote accepted

You're technically trying to index an uninitialized array. You have to first initialize the outer list with lists before adding items:

# Creates a list containing 5 lists initialized to 0
Matrix = [[0 for x in xrange(5)] for x in xrange(5)] 

You can now add items to the list:

Matrix[0][0] = 1
Matrix[4][0] = 5

print Matrix[0][0] # prints 1
print Matrix[4][0] # prints 5
share|improve this answer

If you really want a matrix, you might be better off using numpy.

>>> import numpy
>>> numpy.zeros(25).reshape((5, 5))
array([[ 0.,  0.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  0.,  0.]])
>>> numpy.matrix([[1, 2],[3, 4]])
matrix([[1, 2],
        [3, 4]])

Other ways (with output removed for compactness):

>>> numpy.matrix('1 2; 3 4')
>>> numpy.arange(25).reshape((5, 5))
>>> numpy.array(range(25)).reshape((5, 5))
>>> numpy.ndarray((5, 5))
share|improve this answer
4  
Whenever you want matrices, you want to use numpy. This answer should be first. – Pat B Jul 12 '11 at 16:14
For numerical matrices, numpy is king. I've had uses of two-dimensional arrays of generators, which I opted for the nested comprehension syntax. – Prashant Jul 12 '11 at 19:41

You should make a list of lists, the best way is use nested comprehensions:

>>> matrix = [[0 for i in range(5)] for j in range(5)]
>>> pprint.pprint(matrix)
[[0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0],
 [0, 0, 0, 0, 0]]

On your [5][5] example, you are creating a list with an integer "5" inside, and try to access its 5th item, and that naturally raises an IndexError because there is no 5th item.:

>>> l = [5]
>>> l[5]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: list index out of range
share|improve this answer

Here is a shorter notation for initializing a list of lists:

matrix = [[0]*5 for i in range(5)]

Unfortunately shortening this to something like 5*[5*[0]] doesn't really work because you end up with 5 copies of the same list, so when you modify one of them they all change, for example:

>>> matrix = 5*[5*[0]]
>>> matrix
[[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]
>>> matrix[4][4] = 2
>>> matrix
[[0, 0, 0, 0, 2], [0, 0, 0, 0, 2], [0, 0, 0, 0, 2], [0, 0, 0, 0, 2], [0, 0, 0, 0, 2]]
share|improve this answer

In Python you will be creating a list of lists. You do not have to declare the dimensions ahead of time, but you can. For example:

matrix = []
matrix.append([])
matrix.append([])
matrix[0].append(2)
matrix[1].append(3)

Now matrix[0][0] == 2 and matrix[1][0] == 3. You can also use the list comprehension syntax. This example uses it twice over to build a "two-dimensional list":

from itertools import count, takewhile
matrix = [[i for i in takewhile(lambda j: j < (k+1) * 10, count(k*10))] for k in range(10)]
share|improve this answer

You can easily simulate a two dimensonal array by nesting list data types like so..

matrix = [[ ], [ ]]

this would be a 1x2 matrix notice that the two lists inside are null and can be filled up later, each of the nested lists are used as two rows... so by using n number lists with n number of items in each we come to a a array with NxN ,rows x coulmns.

so finally the code would be like so...

n = 5
matrix = [ [0 for x in range(n)]] * n
share|improve this answer
What benefit comes from the second empty list inside? Why not [[]]? Also, Please spell out words entirely. U is annoying. – Eric Wilson Jul 12 '11 at 16:54
@ FarmBoy- I made the changes better explaining my idea. also I agree with the above posts, numpy would be better suited... – Jodgod Jul 12 '11 at 17:51

If you want to create an empty matrix, the correct syntax is

matrix = [[]]

And if you want to generate a matrix of size 5 filled with 0,

matrix = [[0 for i in xrange(5)] for i in xrange(5)]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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