diff --git a/Notebook 1/Notebook 1 Python Basics.ipynb b/Notebook 1/Notebook 1 Python Basics.ipynb
index dd0629a9a93ce3ef84807f1ee902ab07186be900..e429d4ceb018d7e0059755c526c82c791ad678ae 100644
--- a/Notebook 1/Notebook 1 Python Basics.ipynb	
+++ b/Notebook 1/Notebook 1 Python Basics.ipynb	
@@ -533,11 +533,11 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 1,
    "metadata": {},
    "outputs": [],
    "source": [
-    "g = False"
+    "g = True"
    ]
   },
   {
diff --git a/Notebook 1/Notebook 1 Python Basics.md b/Notebook 1/Notebook 1 Python Basics.md
index 5566009adc0bad98e5b98a4861dead09830a93c3..c2b57ec3948ad8d9d28299f89cf355daf060b006 100644
--- a/Notebook 1/Notebook 1 Python Basics.md	
+++ b/Notebook 1/Notebook 1 Python Basics.md	
@@ -282,7 +282,7 @@ Although it's not obvious, Python can also do "operations" on strings, the `+` m
 There is one more useful variable type we will introduce here: the "boolean" type `bool`. Boolean variable can have two values: `True` and `False`. You type them in directly as `True` and `False` with no quotes (you will see them turn green). 
 
 ```python
-g = False
+g = True
 ```
 
 ```python