2011/9/20 DIPO ELEGBEDE <dipo.elegbede@gmail.com>
3. Get each array one after the other and work with it. (This is where the problem is).

How can I fetch out array1, then array2 then array3 up to array12?

Is it possible to slice?


Not really sure what your problem is, but since you should have now a list of arrays, you should be able to just loop through this list.

for my_array in list_of_arrays:
  .... # do whatever you want on each array

-=- Olivier