Python Forum

Full Version: Numpy Quick start Tutorial
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please look at text below which is from the NumPy tutorial. Shouldn't it say that the 1st axes have a length of 3 since it has 3 elements instead of 2? if not please explain.




In the example pictured below, the array has 2 axes. The first axis has a length of 2, the second axis has a length of 3.

[[ 1., 0., 0.],
[ 0., 1., 2.]]
First axe has a length of 2, i.e. there are 2 elements - that is there are 2 elements in the outer list
Second axe has a length of 3 - that is each of the inner lists has 3 elements

If you prefer - there are 2 rows and 3 columns (you can see that from the way you presented the array)