You can use lists of lists, for example with a function like

def makearray(w,h):
     a = []
     for i in range(w):
             a.append([None]*h)
     return a

Then you adress the elements like a[2][3]. This is probably not very
efficient, but for maps it should be ok.

Ulf

Reply via email to