Why can't you use All_arrays[0][0]
? It will be tipically jagged array. Filling will look like:
for count in range(9):
All_Arrays.append([variable, another_variable, something_else, etc])
I'm afraid that what you need is impossible, and for the most part it is not necessary.
Or you can use Dictionary
, stroring string name of array ("Array0") and its value. For example:
var All_Arrays = {}
for count in range(9):
var array = "Array"+str(count)
All_Arrays[array] = [variable, another_variable, something_else, etc]
And then get the values using All_Arrays["Array0"]