Skip to content

Commit d5e973d

Browse files
committed
be specific about number of array indices
1 parent df689c7 commit d5e973d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/01-numpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keypoints:
1919
- "Variables are created on demand whenever a value is assigned to them."
2020
- "Use `print(something)` to display the value of `something`."
2121
- "The expression `array.shape` gives the shape of an array."
22-
- "Use `array[x, y]` to select a single element from an array."
22+
- "Use `array[x, y]` to select a single element from a 2D array."
2323
- "Array indices start at 0, not 1."
2424
- "Use `low:high` to specify a slice that includes the indices from `low` to `high-1`."
2525
- "All the indexing and slicing that works on arrays also works on strings."

0 commit comments

Comments
 (0)