We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fca1b8 commit 9242c21Copy full SHA for 9242c21
doc/source/user/absolute_beginners.rst
@@ -664,7 +664,10 @@ where you want to slice your array. ::
664
array([4, 5, 6, 7, 8])
665
666
Here, you grabbed a section of your array from index position 3 through index
667
-position 8.
+position 8 but not including position 8 itself.
668
+
669
+*Reminder: Array indexes begin at 0. This means the first element of the array is at index 0,
670
+the second element is at index 1, and so on.*
671
672
You can also stack two existing arrays, both vertically and horizontally. Let's
673
say you have two arrays, ``a1`` and ``a2``::
0 commit comments