From f29a14116de19197386de3ef049d30fd1d98b017 Mon Sep 17 00:00:00 2001 From: Ryan Soklaski Date: Tue, 16 Apr 2019 09:45:29 -0400 Subject: [PATCH] convert code cell to markdown cell --- Python/Module3_IntroducingNumpy/AdvancedIndexing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/Module3_IntroducingNumpy/AdvancedIndexing.md b/Python/Module3_IntroducingNumpy/AdvancedIndexing.md index ee7a0530..cc91851d 100644 --- a/Python/Module3_IntroducingNumpy/AdvancedIndexing.md +++ b/Python/Module3_IntroducingNumpy/AdvancedIndexing.md @@ -128,12 +128,13 @@ The instruction for accessing the contents of `y` in this way is straight-forwar This returns a *copy* of the data, as do all occurrences of advanced indexing. - + ```python # advanced indexing returns a copy >>> np.shares_memory(y, y[index]) False ``` + The indexing array can have an arbitrary shape; *the resulting array will match that shape*.