In python, you can do this:
[([None] * 9) for x in range(9)]
and you\'ll get this:
[[None, None, None, None, None, None, No
Well, you can create an empty 1-D array using the explicit Array constructor:
a = new Array(9)
To create an array of arrays, I think that you'll have to write a nested loop as Marc described.