Skip to content

Commit 5cc5501

Browse files
committed
typos
1 parent 329ed76 commit 5cc5501

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

assets/notebooks/01_string_input_print.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"metadata": {},
2020
"source": [
2121
"---\n",
22-
"## Strings"
22+
"## 1. Writing text: Strings"
2323
]
2424
},
2525
{
@@ -52,7 +52,7 @@
5252
"metadata": {},
5353
"source": [
5454
"---\n",
55-
"## Asking questions: input()"
55+
"## 2. Asking questions: input()"
5656
]
5757
},
5858
{
@@ -85,15 +85,15 @@
8585
"metadata": {},
8686
"source": [
8787
"---\n",
88-
"## ASCII art: print()"
88+
"## 3. ASCII art: print()"
8989
]
9090
},
9191
{
9292
"cell_type": "markdown",
9393
"metadata": {},
9494
"source": [
9595
" \n",
96-
"- Look at the following example and run the cells:"
96+
"- Look at the following example and run the cell:"
9797
]
9898
},
9999
{
@@ -125,7 +125,7 @@
125125
"name": "python",
126126
"nbconvert_exporter": "python",
127127
"pygments_lexer": "ipython3",
128-
"version": "3.9.13"
128+
"version": "3.9.6"
129129
},
130130
"widgets": {
131131
"application/vnd.jupyter.widget-state+json": {

assets/notebooks/02_variables.ipynb

+7-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@
8484
{
8585
"cell_type": "code",
8686
"execution_count": null,
87-
"metadata": {},
87+
"metadata": {
88+
"tags": []
89+
},
8890
"outputs": [],
8991
"source": [
9092
"favorite_food = input (\"What is your favorite food?\")"
@@ -93,7 +95,9 @@
9395
{
9496
"cell_type": "code",
9597
"execution_count": null,
96-
"metadata": {},
98+
"metadata": {
99+
"tags": []
100+
},
97101
"outputs": [],
98102
"source": [
99103
"print (\"Hi! My name is \" + name)\n",
@@ -118,7 +122,7 @@
118122
"name": "python",
119123
"nbconvert_exporter": "python",
120124
"pygments_lexer": "ipython3",
121-
"version": "3.9.13"
125+
"version": "3.9.6"
122126
},
123127
"widgets": {
124128
"application/vnd.jupyter.widget-state+json": {

assets/notebooks/03_list_if_in_else.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"cell_type": "markdown",
2424
"metadata": {},
2525
"source": [
26-
"- You are the owner of a bookstore. n the programming shelf there are:"
26+
"- You are the owner of a bookstore. In the programming shelf there are:"
2727
]
2828
},
2929
{
@@ -89,7 +89,7 @@
8989
"name": "python",
9090
"nbconvert_exporter": "python",
9191
"pygments_lexer": "ipython3",
92-
"version": "3.9.13"
92+
"version": "3.9.6"
9393
},
9494
"widgets": {
9595
"application/vnd.jupyter.widget-state+json": {

assets/notebooks/13_numbers.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,9 @@
309309
"elif operator == \"*\":\n",
310310
" result = first_number * second_number\n",
311311
"elif operator == \"**\":\n",
312-
" result = first_number / second_number\n",
313-
"elif operator == \"/\":\n",
314312
" result = first_number ** second_number\n",
313+
"elif operator == \"/\":\n",
314+
" result = first_number / second_number\n",
315315
"elif operator == \"//\":\n",
316316
" result = first_number // second_number \n",
317317
"elif operator == \"%\": \n",
@@ -400,7 +400,7 @@
400400
"name": "python",
401401
"nbconvert_exporter": "python",
402402
"pygments_lexer": "ipython3",
403-
"version": "3.11.4"
403+
"version": "3.9.6"
404404
},
405405
"widgets": {
406406
"application/vnd.jupyter.widget-state+json": {

0 commit comments

Comments
 (0)