From 6aeac930efe069296ce5d94ee46ce74762873c9d Mon Sep 17 00:00:00 2001 From: Simon Stone Date: Wed, 7 Jun 2023 08:56:53 -0400 Subject: [PATCH] removed a poorly designed challenge --- episodes/17-scope.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/episodes/17-scope.md b/episodes/17-scope.md index afa533b98..de4ab1485 100644 --- a/episodes/17-scope.md +++ b/episodes/17-scope.md @@ -63,25 +63,6 @@ NameError: name 'temperature' is not defined ::::::::::::::::::::::::::::::::::::::: challenge -## Local and Global Variable Use - -Trace the values of all variables in this program as it is executed. -(Use '---' as the value of variables before and after they exist.) - -```python -limit = 100 - -def clip(value): - return min(max(0.0, value), limit) - -value = -22.5 -print(clip(value)) -``` - -:::::::::::::::::::::::::::::::::::::::::::::::::: - -::::::::::::::::::::::::::::::::::::::: challenge - ## Reading Error Messages Read the traceback below, and identify the following: