Contoh fungsi Python Numpy Array_split 01

# welcome to softhunt.net
# import numpy
import numpy as np

array = np.arange(16)

# using numpy.array_split() method
softhunt = np.array_split(array, 6)

print(softhunt)
Outrageous Ostrich