For example, if I have a NumPy array
import numpy as np
a = np.arange(10)
b = np.zeros(5)
How can I insert b to the beginning of a?
I know I can make a new array of size len(a)+len(b) and do slice assignment, but is there a way to directly insert the array?