NumPy - Array Manipulation
What is wrong with this code snippet?
import numpy as np x = np.array([[1, 2], [3, 4]]) y = np.array([5, 6, 7]) result = np.concatenate((x, y), axis=0) print(result)
