Skip to content

Commit c8d191a

Browse files
committed
fix headers
1 parent 1bc1da5 commit c8d191a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Lesson_1_Basics/Lesson_1.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Students will gain an introduction to programming in python, working in interactive notebooks, and learning how to leverage outside resources for coding help. Moreoever students will gain a basic understanding of variables, data types, and working with simple expressions for comparison and computation.\n",
1717
"\n",
1818
"* [Introduction to Programming](#program)\n",
19-
"* [Introduction to Juypter and Google Colab](#jupyter)\n",
19+
"* [Introduction to Jupyter and Google Colab](#jupyter)\n",
2020
"* [Basic math operators: +, -, *, /, **](#math)\n",
2121
"* [Use of the assignment operator (=)](#assign)\n",
2222
"* [Data types: integer, float, string, boolean](#data)\n",
@@ -466,7 +466,7 @@
466466
"cell_type": "markdown",
467467
"metadata": {},
468468
"source": [
469-
"##### Comparison operators: >, <, ==, >=, <= <a id='compare'></a>\n",
469+
"#### Comparison operators: >, <, ==, >=, <= <a id='compare'></a>\n",
470470
"\n",
471471
"Comparison operators (>, <, ==, >=, <=) can be used to compare two or more variables. The output of the comparison is a Boolean (ie `True` or `False`). Therefore, we often use comparison operators to set up condition statements (e.g. if this comparison statement is True, then do this task. If it is False, then do something else). You'll learn more about condition statements and control in Lesson 2. \n",
472472
"\n",

Lesson_1_Basics/Lesson_1_Student_Version.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Students will gain an introduction to programming in python, working in interactive notebooks, and learning how to leverage outside resources for coding help. Moreoever students will gain a basic understanding of variables, data types, and working with simple expressions for comparison and computation.\n",
1717
"\n",
1818
"* [Introduction to Programming](#program)\n",
19-
"* [Introduction to Juypter and Google Colab](#jupyter)\n",
19+
"* [Introduction to Jupyter and Google Colab](#jupyter)\n",
2020
"* [Basic math operators: +, -, *, /, **](#math)\n",
2121
"* [Use of the assignment operator (=)](#assign)\n",
2222
"* [Data types: integer, float, string, boolean](#data)\n",
@@ -321,7 +321,7 @@
321321
"cell_type": "markdown",
322322
"metadata": {},
323323
"source": [
324-
"##### Comparison operators: >, <, ==, >=, <= <a id='compare'></a>\n",
324+
"#### Comparison operators: >, <, ==, >=, <= <a id='compare'></a>\n",
325325
"\n",
326326
"Comparison operators (>, <, ==, >=, <=) can be used to compare two or more variables. The output of the comparison is a Boolean (ie `True` or `False`). Therefore, we often use comparison operators to set up condition statements (e.g. if this comparison statement is True, then do this task. If it is False, then do something else). You'll learn more about condition statements and control in Lesson 2. \n",
327327
"\n",

0 commit comments

Comments
 (0)