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