I am new to python, but I discovered this to create a simple list of 2D arrays that has 8 elements and is dynamic in another dimension
list2d=[[] for i in xrange(8)]
Then you can assign any number of variables to an 8-wide array
list2d[0]=[1,2,3,4,5,6,7,8,9,10,11] list2d[1]=[12,13,14,15,16,17,18,19]
etc.
I hope this helps
Pete
source share