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 d5e973d commit 8ae59daCopy full SHA for 8ae59da
_episodes/01-numpy.md
@@ -21,7 +21,7 @@ keypoints:
21
- "The expression `array.shape` gives the shape of an array."
22
- "Use `array[x, y]` to select a single element from a 2D array."
23
- "Array indices start at 0, not 1."
24
-- "Use `low:high` to specify a slice that includes the indices from `low` to `high-1`."
+- "Use `low:high` to specify a `slice` that includes the indices from `low` to `high-1`."
25
- "All the indexing and slicing that works on arrays also works on strings."
26
- "Use `# some kind of explanation` to add comments to programs."
27
- "Use `numpy.mean(array)`, `numpy.max(array)`, and `numpy.min(array)` to calculate simple statistics."
0 commit comments