diff --git a/Notebook 1/Notebook_1_Python_Basics.ipynb b/Notebook 1/Notebook_1_Python_Basics.ipynb
index 1858e3b796a1f8cf08146fb562da19a13285b881..1e7fb98d393bae0b2b16032495e86c2438c5cc2e 100644
--- a/Notebook 1/Notebook_1_Python_Basics.ipynb	
+++ b/Notebook 1/Notebook_1_Python_Basics.ipynb	
@@ -220,7 +220,7 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "**Exercise 1.2** Combine a string and a numerical values in a single `print` statement using the `,` separator."
+    "**Exercise 1.2** Combine multiple strings and numerical values in a single `print` statement using the `,` separator."
    ]
   },
   {
@@ -753,7 +753,9 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "We will use boolean types much more later when we look at program control flow, but a simple example is the `if` statement:"
+    "We will use boolean types much more later when we look at program control flow, but a simple example using the `if` statement is given below: \n",
+    "\n",
+    "No panic if you don't yet understand the if statement, there will be another entire notebook dedicated to them. This is  just  an example of why  boolean variables  exist.
    ]
   },
   {