Continue with the 4x4 array created in the Array slicing exercise.
- Use
np.split()function for splitting the array into two new 2x4 arrays. Reconstruct the original 4x4 array by usingnp.concatenate(). - Repeat the above exercise but create now 4x2 subarrays and then combine them.