From 14d2fd3214291f482eb7d348972b1010fd92e854 Mon Sep 17 00:00:00 2001 From: Azalee Bostroem Date: Wed, 10 Dec 2025 20:54:30 -0700 Subject: [PATCH] fixing output of number to reflex current python --- episodes/04-motion.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/04-motion.md b/episodes/04-motion.md index 7a086d01..3352d928 100644 --- a/episodes/04-motion.md +++ b/episodes/04-motion.md @@ -300,7 +300,7 @@ mask.sum() ``` ```output -25084 +np.int64(25084) ``` A Boolean `Series` is sometimes called a "mask" because we can use it @@ -460,7 +460,7 @@ pm_mask.sum() ``` ```output -1049 +np.int64(1049) ``` Now we can use this mask to select rows from `results_df`.