From d1f41d71b3433f1c219ae5fbfacac017144da76b Mon Sep 17 00:00:00 2001 From: Andrew Gait Date: Tue, 21 Apr 2026 16:32:59 +0100 Subject: [PATCH] Add correct output of type function --- episodes/03-numpy_essential.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/03-numpy_essential.md b/episodes/03-numpy_essential.md index f07fc1b..fb612dd 100644 --- a/episodes/03-numpy_essential.md +++ b/episodes/03-numpy_essential.md @@ -372,7 +372,7 @@ type(imdata) ``` ```output - +numpy.ndarray ``` Note that this data is in the form of a NumPy array, and so we can use our standard NumPy tools for processing and displaying this data.