Skip to content

Commit 8ae59da

Browse files
committed
'slice' is a code term
1 parent d5e973d commit 8ae59da

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
@@ -21,7 +21,7 @@ keypoints:
2121
- "The expression `array.shape` gives the shape of an array."
2222
- "Use `array[x, y]` to select a single element from a 2D array."
2323
- "Array indices start at 0, not 1."
24-
- "Use `low:high` to specify a slice that includes the indices from `low` to `high-1`."
24+
- "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."
2626
- "Use `# some kind of explanation` to add comments to programs."
2727
- "Use `numpy.mean(array)`, `numpy.max(array)`, and `numpy.min(array)` to calculate simple statistics."

0 commit comments

Comments
 (0)