So, I have 3 dimentional list. For example:
A=[[[1,2,3],[4,5,6],[7,8,9]],...,[[2,4,1],[1,4,6],[1,2,4]]]
I want to process each 2 dimentional list in A independently but they all have same process. If I do it in sequence, I do:
for i in range(len(A)):
A[i]=process(A[i])
But, it takes very long time. Could you tell me how to parallel compute by data parallelization in Python?