From 3b907be81dc802d002b9ad8415b65427d9d6ba6d Mon Sep 17 00:00:00 2001 From: cprutean <cip.pruteanu@ed.ac.uk> Date: Wed, 18 Sep 2024 10:33:42 +0100 Subject: [PATCH] Update 2 files - /CourseNotes/Scope.ipynb - /CourseNotes/conditionalstatements.ipynb --- CourseNotes/Scope.ipynb | 1 + CourseNotes/conditionalstatements.ipynb | 21 ++++++++++----------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CourseNotes/Scope.ipynb b/CourseNotes/Scope.ipynb index 1b8e2b1..07aa45a 100644 --- a/CourseNotes/Scope.ipynb +++ b/CourseNotes/Scope.ipynb @@ -2,6 +2,7 @@ "cells": [ { "cell_type": "markdown", + "id": "54814145", "metadata": {}, "source": [ "# Scope of Variables\n", diff --git a/CourseNotes/conditionalstatements.ipynb b/CourseNotes/conditionalstatements.ipynb index 79e4443..ff9ac3f 100644 --- a/CourseNotes/conditionalstatements.ipynb +++ b/CourseNotes/conditionalstatements.ipynb @@ -61,11 +61,10 @@ "error!\n", "\n", "> #### More on indentation \n", - "In computing languages there are *three* styles to\n", - "designate the start and end of code blocks, these being\n", - "1. *brackets*, in C and Java style languages,\n", - "2. *keywords* in Fortran and Shell scripts.\n", - "3. *indentation* in Python.\n", + ">In computing languages there are *three* styles to designate the start and end of code blocks, these being:\n", + ">1. *brackets*, in C and Java style languages,\n", + ">2. *keywords* in Fortran and Shell scripts.\n", + ">3. *indentation* in Python.\n", "\n", "> So in most languages *indentation* of code blocks is *good style* but\n", "not essential. However (uniquely?) in  the start and end of blocks are\n", @@ -162,17 +161,17 @@ "- Add careful comments explaining what you are doing.\n", "\n", ">**Example Code:**\n", - "- One way example:\n", - "- Two way example:\n", - "- Three way example:\n", - "- Which quadrant is a complex number in :\n", - "- Is point inside sphere using a function :\n", + ">- [One way example](../CodeExamples/OneWayConditional.ipynb)\n", + ">- [Two way example](../CodeExamples/TwoWayConditional.ipynb)\n", + ">- [Three way example](../CodeExamples/ThreeWayConditional.ipynb)\n", + ">- [Which quadrant is a complex number in](../CodeExamples/ComplexQuadrant.ipynb)\n", + ">- [Is point inside circle using a function](../CodeExamples/PointsInCircle.ipynb)\n", "> Download these and \"play\" with them; in particular change in indentation\n", "and see what type of \"crashes\" you get.\n", "\n", ">> Once you have practiced and understood the `if : elif: else:` syntax you have completed\n", "enough to attempt [Checkpoint 2](../Checkpoints/Checkpoint2.ipynb)\n", - "Note, Checkpoint is much more tricky than it looks, read in instuctions\n", + "Note, Checkpoint 2 is much more tricky than it looks, read in instructions\n", "and the **Hint** and plan out all the conditions that your program has\n", "to deal with." ] -- GitLab