From ba8ca2a0b404fa13620d9781b6b6e6bd73d8c8d1 Mon Sep 17 00:00:00 2001 From: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Date: Tue, 21 May 2024 18:36:32 +0200 Subject: [PATCH] feat: teach the camper to look at the browser console (#54905) --- .../build-a-budget-app-project/budget-app.md | 2 ++ .../polygon-area-calculator.md | 2 ++ .../probability-calculator.md | 1 + .../build-a-time-calculator-project/time-calculator.md | 2 ++ .../arithmetic-formatter.md | 2 ++ 5 files changed, 9 insertions(+) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-budget-app-project/budget-app.md b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-budget-app-project/budget-app.md index 85791822291..9f3c679e05f 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-budget-app-project/budget-app.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-budget-app-project/budget-app.md @@ -77,6 +77,8 @@ Percentage spent by category g ``` +Note: open the browser console with F12 to see a more verbose output of the tests. + # --hints-- The `deposit` method should create a specific object in the ledger instance variable. diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-polygon-area-calculator-project/polygon-area-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-polygon-area-calculator-project/polygon-area-calculator.md index 2367d4c7a55..ae29d0e59b8 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-polygon-area-calculator-project/polygon-area-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-polygon-area-calculator-project/polygon-area-calculator.md @@ -75,6 +75,8 @@ Square(side=4) 8 ``` +Note: open the browser console with F12 to see a more verbose output of the tests. + # --hints-- The `Square` class should be a subclass of the `Rectangle` class. diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-probability-calculator-project/probability-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-probability-calculator-project/probability-calculator.md index e2a37bb4df8..e15e2facef1 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-probability-calculator-project/probability-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-probability-calculator-project/probability-calculator.md @@ -55,6 +55,7 @@ Since this is based on random draws, the probability will be slightly different _Hint: Consider using the modules that are already imported at the top. Do not initialize random seed within the file._ +Note: open the browser console with F12 to see a more verbose output of the tests. # --hints-- diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-time-calculator-project/time-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-time-calculator-project/time-calculator.md index 5aa96857aa0..1f5575b1696 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/build-a-time-calculator-project/time-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/build-a-time-calculator-project/time-calculator.md @@ -44,6 +44,8 @@ add_time('6:30 PM', '205:12') Do not import any Python libraries. Assume that the start times are valid times. The minutes in the duration time will be a whole number less than 60, but the hour can be any whole number. +Note: open the browser console with F12 to see a more verbose output of the tests. + # --hints-- Calling `add_time('3:30 PM', '2:12')` should return `'5:42 PM'`. diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/build-an-arithmetic-formatter-project/arithmetic-formatter.md b/curriculum/challenges/english/07-scientific-computing-with-python/build-an-arithmetic-formatter-project/arithmetic-formatter.md index 9c1980c42b5..ed6ab9a2951 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/build-an-arithmetic-formatter-project/arithmetic-formatter.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/build-an-arithmetic-formatter-project/arithmetic-formatter.md @@ -68,6 +68,8 @@ The function will return the correct conversion if the supplied problems are pro - There should be four spaces between each problem. - There should be dashes at the bottom of each problem. The dashes should run along the entire length of each problem individually. (The example above shows what this should look like.) +Note: open the browser console with F12 to see a more verbose output of the tests. + # --hints-- `arithmetic_arranger(["3801 - 2", "123 + 49"])` should return ` 3801 123\n- 2 + 49\n------ -----`.