NumPy - Array Manipulation
What is the output of the following code?
import numpy as np arr = np.array([10, 20, 30, 40, 50, 60]) splits = np.split(arr, [2, 4]) print(splits)
