UoMResearchIT / programming_with_python

Intermediate Python programming course
https://uomresearchit.github.io/programming_with_python/
Other
1 stars 0 forks source link

Typo in reshaping numpy arrays #10

Closed anthony-evans closed 5 months ago

anthony-evans commented 5 months ago

In https://github.com/UoMResearchIT/programming_with_python/blob/gh-pages/_episodes/03-numpy_essential.md#reshaping-numpy-arrays

print(f'arr_2d has shape {arr2d.shape}, and contains:')

should be

print(f'arr_2d has shape {arr_2d.shape}, and contains:')