NumPy Array Shape and Reshaping
Array Shape
python
import numpy as np
arr = np.array([[1,2,3],[4,5,6]])
print(arr.shape)
Reshaping Arrays
python
arr = np.arange(6)
print(arr.reshape(2,3))
Next Tutorial: NumPy Broadcasting

