Skip to content

Commit 9242c21

Browse files
DOC: Make wording in absolute beginners guide more friendly (numpy#27788)
1 parent 9fca1b8 commit 9242c21

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/source/user/absolute_beginners.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,10 @@ where you want to slice your array. ::
664664
array([4, 5, 6, 7, 8])
665665

666666
Here, you grabbed a section of your array from index position 3 through index
667-
position 8.
667+
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.*
668671

669672
You can also stack two existing arrays, both vertically and horizontally. Let's
670673
say you have two arrays, ``a1`` and ``a2``::

0 commit comments

Comments
 (0)