From 0c88c4110db47849e80be1ecc2c9c2b0b9bd2a9c Mon Sep 17 00:00:00 2001 From: SandraVerhagen Date: Fri, 3 Oct 2025 13:33:26 +0200 Subject: [PATCH 1/3] merge updates chpt 3 and 4 in main --- book/.DS_Store | Bin 6148 -> 6148 bytes .../exercise_notebook_4_debugging.ipynb | 42 +++++--------- .../PythonNotebook3_loops.ipynb | 54 ++++++++++++++++-- .../PythonNotebook4_debugging.ipynb | 20 +++---- .../PythonNotebook4_first_page copy.ipynb | 7 ++- 5 files changed, 77 insertions(+), 46 deletions(-) diff --git a/book/.DS_Store b/book/.DS_Store index 92fabb46a95e75cabd07975fea25c1c2fb47fa47..09b04c53217951c9d327c661323158012ca9d88b 100644 GIT binary patch delta 98 zcmZoMXffDe&m_D%sURn_xWvHV8Y2@k3o9Et2gl?frf5A*&UgXo>S|p>Gjl^71zj`q zS{;RILlYAN9R&*`!`fO-4pC)&>!A4ToZP(p-pSXP_mScXxvYDOZFFyeA Cy&7l$ delta 96 zcmZoMXffDe&m_DpsURn_xWvHV8Y2@k3o9Et2m9n8rf5wL&UgW_>S_ZW1#`n%9ffK` y6B7{Iz_PZMlS5Ql-#REhJ0~|Uzhm-kCV9rr$vjLNo0XZLuuN=V-OSGMmmdJo%Nle5 diff --git a/book/exercise_notebooks/exercise_notebook_4_debugging.ipynb b/book/exercise_notebooks/exercise_notebook_4_debugging.ipynb index 7bec943..82510a4 100644 --- a/book/exercise_notebooks/exercise_notebook_4_debugging.ipynb +++ b/book/exercise_notebooks/exercise_notebook_4_debugging.ipynb @@ -42,7 +42,11 @@ "outputs": [], "source": [ "def is_prime(n):\n", - " return True # or False" + " \"\"\" \n", + " Check if a number is prime. The input argument n must be a positive integer.\n", + " The function returns True if n is prime, and False otherwise.\n", + " \"\"\"\n", + " ...\n" ] }, { @@ -54,7 +58,7 @@ "\n", "Use your is_prime() function to create a list of all primes $< 1000$. What is the sum of all primes $< 1000$?\n", "\n", - "Hint: is there a nice way to calculate the sum of the elements in a list?\n", + "Hint: you will need a for loop to fill the list.\n", "\n" ] }, @@ -67,8 +71,8 @@ "prime_list = ...\n", "prime_sum = ...\n", "\n", - "print(prime_list)\n", - "print(prime_sum)" + "print(f'List of primes: {prime_list}\\n')\n", + "print(f'Sum of primes: {prime_sum}')" ] }, { @@ -81,7 +85,7 @@ } }, "source": [ - "
(Fixing) Exercise 4.3

Fix the syntax errors so it prints \"AES\" without removing the variable that holds it. You'll need to fix 2 errors.
" + "
(Fixing) Exercise 4.3

Fix the syntax errors so it prints \"EC&T\" without removing the variable that holds it. You'll need to fix 2 errors.
" ] }, { @@ -91,7 +95,7 @@ "outputs": [], "source": [ "def get_abbreviation():\n", - " my abbreviation = \"AES\"\n", + " my abbreviation = \"EC&T\"\n", " return my_abbreviation\n", " \n", "print(get_abbreviation())" @@ -111,25 +115,14 @@ "\n", "The factorial n! is defined as n! = n * (n - 1) * (n - 2) * ... * 2 * 1. The function uses the fact that if n > 0, n! = n * (n - 1)!. This is an example of a _recursive_ function, a function that calls itself.\n", "\n", - "The code below calls the function \"factorial\" with the number 4 as input. The factorial of 4 is 4 * 3 * 2 * 1, which is 24, but the code below prints 262144. Find and fix the semantic error in this function." + "The code below calls the function factorial with the number 4 as input. The factorial of 4 is $4 \\cdot 3 \\cdot 2 \\cdot 1 = 24$, but the code below prints 262144. Find and fix the error in this function. What kind of error is this (syntax, runtime, semantic)?" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "262144" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "def factorial(x):\n", " \"returns the factorial of x\"\n", @@ -140,13 +133,6 @@ "\n", "factorial(4)" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { @@ -165,7 +151,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.7" + "version": "3.13.2" }, "latex_envs": { "LaTeX_envs_menu_present": true, diff --git a/book/notebook_3_structures_loops/PythonNotebook3_loops.ipynb b/book/notebook_3_structures_loops/PythonNotebook3_loops.ipynb index b004e1a..b28bdfc 100644 --- a/book/notebook_3_structures_loops/PythonNotebook3_loops.ipynb +++ b/book/notebook_3_structures_loops/PythonNotebook3_loops.ipynb @@ -278,25 +278,57 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "f = [-2, 4, 16, 40, 82, 148]\n" + ] + } + ], "source": [ "x = [0, 1, 2, 3, 4, 5]\n", "f = [x[0] ** 3 + 5*x[0] - 2, x[1] ** 3 + 5*x[1] - 2, x[2] ** 3 + 5*x[2] - 2, x[3] ** 3 + 5*x[3] - 2, x[4] ** 3 + 5*x[4] - 2, x[5] ** 3 + 5*x[5] - 2]\n", "print(f'f = {f }')" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can see above, that a list was created by using the equation for every item in $x$. A more convenient way is to use a for loop, as shown below. This is especially important if you need to cycle over a large number of items/values.\n", + "\n", + "You can see that we first create an empty list $f$; in each cycle of the loop, we will then add a new item to $f$. In order to do so, we use .append (see Section 3.1)." + ] + }, { "cell_type": "code", "execution_count": null, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "In this cycle we added f(0) = -2\n", + "In this cycle we added f(1) = 4\n", + "In this cycle we added f(2) = 16\n", + "In this cycle we added f(3) = 40\n", + "In this cycle we added f(4) = 82\n", + "In this cycle we added f(5) = 148\n", + "f(x) = [-2, 4, 16, 40, 82, 148]\n" + ] + } + ], "source": [ "x = [0, 1, 2, 3, 4, 5]\n", "f = []\n", "for i in x:\n", " f.append(x[i] ** 3 + 5*x[i] - 2)\n", + " print(f'In this cycle we added f({x[i]}) = {f[i]}')\n", "print(f'f = {f }')" ] }, @@ -651,7 +683,7 @@ } }, "source": [ - "As you can see, with the help of the continue keyword we managed to skip some of the iterations. Also worth noting that $0$ is divisible by any number, for that reason the calculate_cool_function(i) at i = 0 didn't run." + "As you can see, with the help of the continue keyword we skipped the execution of calculate_cool_function(i)< for all even $i$. Also worth noting that $0$ is divisible by any number, for that reason the calculate_cool_function(i) at i = 0 didn't run." ] }, { @@ -705,6 +737,20 @@ "for i in range(3, 17, 2):\n", " print(f'i is {i}')" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### After this Chapter you should be able to:\n", + "\n", + "- understand the differences between **`list`**, **`tuple`**, and **`dict`**\n", + "- slice lists and tuples\n", + "- use for loops\n", + "- use while loops\n", + "- use break and continue in loops\n", + "- understand range()" + ] } ], "metadata": { diff --git a/book/notebook_4_debugging/PythonNotebook4_debugging.ipynb b/book/notebook_4_debugging/PythonNotebook4_debugging.ipynb index b805833..02b56fe 100644 --- a/book/notebook_4_debugging/PythonNotebook4_debugging.ipynb +++ b/book/notebook_4_debugging/PythonNotebook4_debugging.ipynb @@ -296,20 +296,19 @@ "source": [ "#### After this Chapter you should be able to:\n", "\n", - "- understand the differences between **`list`**, **`tuple`**, and **`dict`**\n", - "- slice lists and tuples\n", - "- use for loops\n", - "- use while loops\n", - "- use break and continue in loops\n", - "- understand range()\n", "- know different types of errors\n", "- have a plan when debugging your code" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "base", "language": "python", "name": "python3" }, @@ -323,7 +322,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.0" + "version": "3.13.2" }, "latex_envs": { "LaTeX_envs_menu_present": true, @@ -342,11 +341,6 @@ "latex_user_defs": false, "report_style_numbering": false, "user_envs_cfg": false - }, - "vscode": { - "interpreter": { - "hash": "1fe2f2b718b1108b9c4176932db8a0ead471245140baaa21ea96a4066683e6b2" - } } }, "nbformat": 4, diff --git a/book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb b/book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb index 9a24edb..2a22138 100644 --- a/book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb +++ b/book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb @@ -17,7 +17,7 @@ "# 4: Debugging\n", "
\n", "\n", - "In this chapter, we introduce debugging. We cover the three main types of errors—syntax, runtime, and logical—and strategies for identifying and resolving issues in your code. Mastering these topics will refine your problem-solving expertise, laying a strong foundation for tackling complex Python projects. \n", + "In this chapter, we introduce debugging. We cover the three main types of errors—syntax, runtime, and semantic—and strategies for identifying and resolving issues in your code. Mastering these topics will refine your problem-solving expertise, laying a strong foundation for tackling complex Python projects. \n", "\n", "```{admonition} Attention\n", ":class: danger\n", @@ -27,6 +27,11 @@ "+++\n", "```" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] } ], "metadata": { From 7559ea04b426327c74d5ffd988c285f1fdda4b56 Mon Sep 17 00:00:00 2001 From: SandraVerhagen Date: Fri, 3 Oct 2025 13:46:38 +0200 Subject: [PATCH 2/3] updates chpt 3 and 4 (toc file, zip files) --- book/_toc.yml | 8 ++++---- .../exercise_notebook_3_structures_loops.zip | Bin 3740 -> 3733 bytes .../exercise_notebook_4_debugging.zip | Bin 0 -> 1977 bytes 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 book/exercise_notebooks/exercise_notebook_4_debugging.zip diff --git a/book/_toc.yml b/book/_toc.yml index 0f6967c..24cc574 100644 --- a/book/_toc.yml +++ b/book/_toc.yml @@ -42,10 +42,10 @@ parts: - file: exercise_notebooks/exercise_notebook_3_structures_loops.ipynb # - file: exercise_notebooks/exercise_notebook_3_loops_debugging.ipynb - # - file: notebook_4_debugging/PythonNotebook4_first_page.ipynb - # sections: - # - file: notebook_4_debugging/PythonNotebook4_debugging.ipynb - # - file: exercise_notebooks/exercise_notebook_4_debugging.ipynb + - file: notebook_4_debugging/PythonNotebook4_first_page.ipynb + sections: + - file: notebook_4_debugging/PythonNotebook4_debugging.ipynb + - file: exercise_notebooks/exercise_notebook_4_debugging.ipynb # - file: notebook_5_figures/PythonNotebook5_first_page.ipynb # sections: diff --git a/book/exercise_notebooks/exercise_notebook_3_structures_loops.zip b/book/exercise_notebooks/exercise_notebook_3_structures_loops.zip index 842f169c5e7ba6b3472aab0eeb2d89129d1f11ea..81cb97a10025ab8800a5d387b04fbefdd20ddcd3 100644 GIT binary patch delta 3157 zcmV-b465^-9hDsoP)h>@6aWYS2mpq2LXizm3*2wsXlu9MXxwk!v1iEve|VQNt!eFN z;v(B$zItPn7HP~w5kz9h^Vm*!3r##;#$g4tA>q4W)B%h$WqO5e{7-fO7hSm4aLwVV;MIS1{K1vp-iM1+jBn%RU{s#Je&mQ zTuVNH4z0BhHf%E+=1EA}#s2-ze=%PFoQ-8TW-}Sb3}!Zv2^10UGJ(YzQYnR&SQ@8I zTHu@$CNpo@R$eJBz_=j!#Pg2R^Liy(1D!&i3%0Vg!nhvgQy4zXf5*55?HY5K%b1^& zBA4rN#{pSCZPmE>&}=tdCPqfWYZ^Ds;<0;vP-RFyg}OkyLkoC-oIJ_Uo8)nPrz)vD zBPo$Coh(-_XfwNUBG|Rxp}qI)vu~f9_PN#GZvrP{p0`xa^;@cClC9lX0pvj&BzyR? z({5w<*JU=nPhd9Be}xtut1DKoN`*;<9x6SB#+>D#lg*)9Mi@hi0#!zPp@ET8DK%uz zUcY(6rh*$FnAInbeNU>$jGU&iAOl!>3coh=G#m?TdNvl&PHnBRT889^afVIFI^Su189W7~G!tx+s9BSeW-}1cd6E#AW0PbRe~Mg#oC<3iP)9Zp)C;8$ zTIXpdq6X_nLl`dMh8ZiJSw1UfI=$PS;leSN;AYjmDYpvWFpkzBt!^F&1Ugdi zrC`yagdJ6~f9-u$Kw)_fXzJn?7eV2JnDDTSH=GRYIT7p7jhKARtTy$2U_OOP z%_VDMFahWa(*R~QZNv(r#2Cve` z1BRf+NiE5z1DL=-WHTWW*0o;FU!?LL$9hvG0wnl6~){OljZFSDsohEVB zvFb`*9Wr00ueHnov{#GK;p)-h>ONcT_cwR9wpTkhIu$}8N}q#-PX&$pE7ys-J#2ss zfBf8HVZf&(1{&J~$y-BVp}_@u-y^Kt>M*~H|9D-;`!0gb9sE35HfK(Aw$bax`dc2cC%7$lPZCPx)AjWGrOiVkoNr3$vAiMvdU6hv+nu ze&;7Fq?TbpCZ-lUY-P(qH#G%e0oyiLDY$UBZ7DhXx|yrP5l~9eAX!CIHTTP_e^Ae% ziu*-0VxyXAihRxmI;zaFOde0F7iH^O;RI_9M({F(ht(@5e-yb5;wUq&z1*T0OB+|$h^0&@I-n_DKt zrb+}Mr4j4oAbbxl1+iX-ZF}$%f4=*@>A_w2JH?YcO`o2-9{Cav^Sa*N$>%tdFew6lv0(glchqI*{(k7ui|V`(^xH_|u;c zr0-j4s-e^R+U5AU0G~jT`6cxZwBk|7jm^i(@&}4pal9f5$BYV2fiA z4`gH>LHgpjMGTiYdL8Gcbn#FSD{0fU2}hiOkVT&5fNwR!&Z&A7iwuqcKr1--43&mX zq$-JQ?5u1KFdSk5q$3pz?C7vlT}43H#hTS3MFB_L;G!x|FIMIlFN;S7teP7dZuiee z!$;li?sl)+>$#n?wSLW#f7xfe!$yv+VY_pS0??cfLKxRbrRGt$@Av$@y}go>-))d; zci6J&7xT+UKK}K(zQ2rvcC)D5EX03=dv&Q?s@1uS0Fjk`l%ngDRrfq`{v`$d(Z>`wQe@7zVL-xcLwQTBK zg&3vlwgoQho19R$8-l!rqBj{iZjIB+NMw(oMZI3PyK~(7bSV1l>7{%+?!A)cBKY&6 zXn!%({Vyu^_HfFG;TEoz1rfT&uw@1+JtClBMe!>!(!r}r;yKv~Lc_SMTy;tViG&G- z13RT5UynV7C04bQe=5>ldGGJJM0OK_#`XzS7eYl99rREWbt7%vI$8NZ#nlC>xv_2_ zmoW*l2%KpPB3g0{S8lIjhl(?cj8}MUBdKIUJLWh;;VuK_ji`&L*g18~OTD*5@ug$f zP{n-EQ1AiVQ;=&(M9Yr>C^L=6%4GYy-QDg+%c*jwX+FKffA4$0z56+pdoOjl0f#q7 zwm;nF!_DDle|^XA@2+n~-M#gJ&&4|5^ZWkRW)%6|o%>@IosX@%A|H0=Xn)-+SgUEg zhc@*oz;!x@w>>JDdkkWUZ?zh1jf<;DP`p7F?5uuGT~BxpIEoy%xa}GU_I`D++F`2^J%;ocubzBS z*Zk2M{gP6wRZcwm^ssz~^ypPP5cKF*dl}JVv)C0Yv%X~YR?_!!xv#b*i>h)}_uPGj z^*?M1%|LR|D7Nlt6zttn$5~W>sBB(DlD3u~2`X~fe@GRAkUTM8>xUADV)R!1$fGr| zeD5zIzDq_38op)zZWo$*=r(;5jfck=2kfAsF!(Dw>AD$ z>r#RU4gWt?b^Ft(YQ`smZe9To?n9%ch4q!SivWIdPLGSAM{m8hyKQn`1PYgy9&k3+ zV%Ye;e^4aeOipAfa9W94KTo~lHE1Oe*=!*F6s<$!SEh1+VxG#YE1-!ftapP zOUr73W*YOky$U0dQy5x^JO&!%NIrTKe!afF-#bewyZ`^AbTMc3S8RS=+|N`tLAYHVz860II3| zf9mJfkaRw>AAJNdT|G2d?H2=TR$G0~2Mjc20ZsyuoSRAzFZo;Xi){)(HV^1a1Yvc# z!mk$3GZn_lEMlE&R+Oe?VqyG14q~ZDIQI1HFAskT216>L4d&FxQ((}fJlrtXROJdV z;3$!q^lIeK;hwA1w zgFak}s^h4cfW)-4383d=WfyKp!O4_9jHZuaZ**!wrx;k&4V;@tcDFdjPPGRR4y!I_ zFtj{$!c`&Bwb}d~Ol6`-0X838Kll$&O9u#&ihn4V4FCXqE&u>fO928D0~7!V5C8}O vhI2w&l8S#Qmkj^_e3LH@QyScF-e^!u1qJ{B000310RV6S000jT00000I3xfz delta 3164 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 CiV2zk diff --git a/book/exercise_notebooks/exercise_notebook_4_debugging.zip b/book/exercise_notebooks/exercise_notebook_4_debugging.zip new file mode 100644 index 0000000000000000000000000000000000000000..a269e98dda5f74b16c497484e9444cbc92105018 GIT binary patch literal 1977 zcmbW2YdjN*8^jdZKkpu`F>3XoWC*WTN2K)x_ zkMa*iVhH{|IDDADA0ChOG4i?Q?-w2rfWZamVnU*Ee&JCd0FWoZeEbB@(AO+KR~Hcg zKdX_6hBYzKzxOH)+!<#^>3@co|rq4$N59->)E*=Og;Yxblwr*>~LQL2POsn>zd z26aVj+nl1??WyJ_$V^`?fy<@q&Ax`XMlJF!UZP%p{eGJlxy5~5*6qQQrZl&AlY-Am zL)_!mDUKPImDtOxA1#R#vY)qnoMEs+=`D2VUd0Og^_kArVl@!UEn<2_ek<=olILi2 zaI;2zD5AN3(6#gJL}>qj(k`(*ds4q*K&_`wDDH9eR*LmR;M@t1A6h5{NbD6lP1{TD z2ckmDn4-4H-kNGvs=nRXT6QLm#yJ2B%NzL6FvDxuVbc76Z0m=l zJ&;;2B7?1zQmzhhvZ17hyfMyc&?Giyot{VcC5&HGzve|&DN;qvhx4vVP`lCoHc3Aj zt{)s?w2^o=KXA57#*Sb7B!ysIu`sHH7qwn_QYtT3#D}QAaY3*P>w8YO+4kgR`4>|6 zqxK#sk{0rx&6*ZVI@28DqeOpRcVVUzt@unY30clTd>nUY_1IEky@kWU6U!RA1vb;S z9V>DxSl27-+E}PM1;_IHun2qsodl91l_d#&M(`+e=ZwDfy~1$r5IE&!zUpvwhLV{m zq@G;!m%vW`LPjgmHooz&gwq=d5~ZE8ta4a23DB516@RvCUQ{eqliF`9S37uuy!I0L zXgGG@VDm&ka_gizyo1(e++a*l1gw49FvXO;x8Ry)8_>7MhDSjhD2VWLq1(dEm6T8| z(v}vIc4z6F`|?xw%f6Rsu;@w_BGn?LFPDits=N9T8CB#2f2*npP-<%7Tj#ur4)y8B-wE5g&6XLM3JOFGw+N%9-8J`-o;( zE=ay(VAFV^asWITiT%=tM)n7W=?WP%>Szz`GdWwh0-K=SYJhuux+X`QRltwp*=SSr zm_7SWwuK58B#acMY{avSMLaz_b-O8q+~*dMeJlN%y~TUmTAPdyFntB?I=!)Mqp#bW z3IfqkSo|hI>_F+dMT}17-Jy%@3#iKdjrCco+60=~~nMvuirc9M1JKKiS!wh|}TtxLM~KRlIM=-U>5D||0l z`%yv=mc2hg{fjzr6hQ;kUJTkbPHeFa|wFF;Ys&YrgSL!nS#W*H;8R%wY{dhWnfleYx^Y@2lBsBlZ)gU8rgE zC?2h$l|~W0b|VXPQV=-oW9_7wthkNLUF{kf#k5b5PE$q@II=MghUhy+S4fVEyTnQOn&GROEk4!arv2^*`ktvgQ=}?~Vvj-Vsvg%#oK3$8c(pd@F z`L#41-09w@;>$%7GPwTHHq=J#^gft6lk#HVi|g^aCd;g7w~2yP*{WN%Hg4=cBCYA{?rRyIi4*eO$%Y5SHV?zrkwF55{WAR>2uVxt@w4ZQpio zF)m3vPjQL|wXt-E%$0r?ty6F*QR0PkNBPeYsQYJJ(Kq?d*KSw8``hd04ZMutOYlt6 z61#s-wmy7ohnriL$i*TGhatD^*Xi!D5$KYcZ2Y2b>po#%GA^f$aNe6JEg?+NTr*_i zrqv!;!10qPdnu5DaAfJ=tIX?)>fq=NF*a2cGWd0|2xo0RSgBkV}&Lf9(AC4h)d_FG Date: Fri, 3 Oct 2025 14:01:04 +0200 Subject: [PATCH 3/3] toc and zip updates --- ...ok4_first_page copy.ipynb => PythonNotebook4_first_page.ipynb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename book/notebook_4_debugging/{PythonNotebook4_first_page copy.ipynb => PythonNotebook4_first_page.ipynb} (100%) diff --git a/book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb b/book/notebook_4_debugging/PythonNotebook4_first_page.ipynb similarity index 100% rename from book/notebook_4_debugging/PythonNotebook4_first_page copy.ipynb rename to book/notebook_4_debugging/PythonNotebook4_first_page.ipynb