标签: python numpy
正在寻找类似的东西
A = np.array([1, 2, 3, 4]) B = np.array([5, 7]) print A.add(B, 1) [1, 7, 10, 4]
可能选择要添加的轴。