From 21858b7a20c73eba191a086754f4b67b8c2e76c5 Mon Sep 17 00:00:00 2001 From: richelbilderbeek Date: Fri, 30 Aug 2024 06:35:45 +0200 Subject: [PATCH] Fix markdown --- docs/misc/evaluation.md | 3 ++- docs/sessions/variables_expressions_and_statements_2.md | 8 ++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/misc/evaluation.md b/docs/misc/evaluation.md index d4a8062..334730e 100644 --- a/docs/misc/evaluation.md +++ b/docs/misc/evaluation.md @@ -58,7 +58,8 @@ - In Python, I can use command-line arguments - In Python, I can import the `matplotlib` library - In Python, I can use a for loop - - In Python, I can write a function without an argument and without a return type + - In Python, + I can write a function without an argument and without a return type - In Python, I can write a function that calls a function - In Python, I can write a function that requires an argument - In Python, I can write a function with a return value diff --git a/docs/sessions/variables_expressions_and_statements_2.md b/docs/sessions/variables_expressions_and_statements_2.md index 762647f..0f53972 100644 --- a/docs/sessions/variables_expressions_and_statements_2.md +++ b/docs/sessions/variables_expressions_and_statements_2.md @@ -211,7 +211,8 @@ Then in section 2.14, do exercises 6 and 7. !!! question "2.14.6" - Evaluate the following numerical expressions in your head, then use the Python interpreter to check your results: + Evaluate the following numerical expressions in your head, + then use the Python interpreter to check your results: ``` >>> 5 % 2 @@ -224,7 +225,10 @@ Then in section 2.14, do exercises 6 and 7. ``` What happened with the last example? - Why? If you were able to correctly anticipate the computer’s response in all but the last one, it is time to move on. If not, take time now to make up examples of your own. Explore the modulus operator until you are confident you understand how it works. + Why? If you were able to correctly anticipate the computer’s response in + all but the last one, it is time to move on. If not, take time now to make + up examples of your own. Explore the modulus operator until you are + confident you understand how it works. ???- question "Answer"