I am just starting up with numpy. The quick start tutorial says:
The coordinates of a point in 3D space [1, 2, 1] has one axis. That axis has 3 elements in it, so we say it has a length of 3. 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.]]
I am not getting "The first axis has a length of 2, the second axis has a length of 3." I can see both [ 1., 0., 0.] and [ 0., 1., 2.] containing three elements, then why their length is not 3?