[EMAIL PROTECTED] wrote: : Hello all, : I am trying to convert some C code into python. Since i am new to : python, i would like to know how to deal with multidimensional arrays?
Here you go: http://python.org/doc/faq/programming.html#how-do-i-create-a-multidimensional-list Also, if your table is relatively sparse, you might even be able to use a dictionary, because a 2-d array can be considered as a mapping between (index1, index2) keys and its values. -- http://mail.python.org/mailman/listinfo/python-list