split array into 3 parts python code example
Example 1: python split range into n groups
import numpy
x = range(25)
l = numpy.array_split(numpy.array(x),6)
Example 2: python divide array into n parts
def split(a, n):
k, m = divmod(len(a), n)
return (a[i * k + min(i, m):(i + 1) * k + min(i + 1, m)] for i in range(n))
print( list(split(range(11), 3)) ) # [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10]]