File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,12 +4,10 @@ The goal of this exercise is to learn some basics of debugging Python code.
44
55- [ Getting set up] ( #getting-set-up )
66- [ Learning objective] ( #learning-objective )
7- - [ The goal] ( #the-goal )
8- - [ The script] ( #the-script )
9- - [ Best practice 1: Put code into functions] ( #best-practice-1-put-code-into-functions )
10- - [ Best practice 2: Write modules not scripts] ( #best-practice-2-write-modules-not-scripts )
11- - [ Best practice 3: Use docstrings to document your code] ( #best-practice-3-use-docstrings-to-document-your-code )
12- - [ Best practice 4: Add tests to your docstrings] ( #best-practice-4-add-tests-to-your-docstrings )
7+ - [ The Python debugger] ( #the-python-dbugger )
8+ - [ Running the script through the debugger] ( #running-the-script-through-the-debugger )
9+ - [ Using breakpoints] ( #using-breakpoints )
10+ - [ The Exercise] ( #the-exercise )
1311- [ Acknowledgments] ( #acknowledgments )
1412- [ License] ( #license )
1513
@@ -332,7 +330,7 @@ like we learned above. For example, use `p` and `type` to inspect the variables
332330 <class 'str'>
333331
334332
335- # The exercise
333+ # The Exercise
336334
337335Now that you know the basics of the Python debugger,
338336use it to debug the ` area_of_rectangle.py ` script.
You can’t perform that action at this time.
0 commit comments