NumPy - Array Manipulation
What will be the output of this code?
import numpy as np x = np.array([1, 2, 3]) y = np.array([4, 5, 6]) result = np.concatenate((x, y), axis=0) print(result)
