diff --git a/CourseNotes/HowtoWriteaComputerProgramfromScratch.ipynb b/CourseNotes/HowtoWriteaComputerProgramfromScratch.ipynb index 36de0f2456be748dc1c4a55a2bb6b211ab01860e..766b0ec453dde3c08edf1a8dc44ce58e7372712a 100644 --- a/CourseNotes/HowtoWriteaComputerProgramfromScratch.ipynb +++ b/CourseNotes/HowtoWriteaComputerProgramfromScratch.ipynb @@ -399,7 +399,10 @@ "\n", "In the final code example above, we made use of the fact that the program has a very rigid structure. This begins from the limited user choice, and the fact that each choice is independent of others, which can allow us to produce matching arrays that make use of anonymous functions to calculate the desired function and its derivative and plot the result. You will see more detailed examples of all the concepts used in this section as you advance through the course.\n", "\n", - "> Please note that the final code is significantly less human-friendly than the very first iteration we tried, and this is to be expected. **Programming is generally not a linear process**, and one never aims to write the final version of a code on the first try. It is best practice to adopt a trial and error approach (which most programmers do), where you interatively improve on the code, rather then hope to produce the final version from the first attempt. This practice also turns out to be significantly faster and more efficient than the alternatives." + "> Please note that the final code is significantly less human-friendly than the very first iteration we tried, and this is to be expected. **Programming is generally not a linear process**, and one never aims to write the final version of a code on the first try. It is best practice to adopt a trial and error approach (which most programmers do), where you interatively improve on the code, rather then hope to produce the final version from the first attempt. This practice also turns out to be significantly faster and more efficient than the alternatives.\n", + "\n", + "### Next steps\n", + "Once you have completed this checkpoint, please continue with the [Week4](../WeeklyTasks/Week4.ipynb) tasklist." ] }, {