Skip to content

Commit 013b4cb

Browse files
fmbfmb
fmb
authored and
fmb
committed
fixed typos
1 parent fdb4ab1 commit 013b4cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Part 1/Section 02 - A Quick Refresher/06 - The For Loop.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"cell_type": "markdown",
7979
"metadata": {},
8080
"source": [
81-
"But that's **NOT** what the **for** statement does in Python - the **for** statement is a way to **iterate** over iterables, and has nothing to do with the **for** loop we just saw. The closest equivalent we have in Python is the **where** loop written as above."
81+
"But that's **NOT** what the **for** statement does in Python - the **for** statement is a way to **iterate** over iterables, and has nothing to do with the **for** loop we just saw. The closest equivalent we have in Python is the **while** loop written as above."
8282
]
8383
},
8484
{
@@ -251,7 +251,7 @@
251251
"cell_type": "markdown",
252252
"metadata": {},
253253
"source": [
254-
"The **break** and **continue** statements work just as well in **for** loops as they do in **where** loops:"
254+
"The **break** and **continue** statements work just as well in **for** loops as they do in **while** loops:"
255255
]
256256
},
257257
{
@@ -367,7 +367,7 @@
367367
"cell_type": "markdown",
368368
"metadata": {},
369369
"source": [
370-
"Similarly to the **where** loop, **break** and **continue** work just the same in the context of a **try** statement's **finally** clause."
370+
"Similarly to the **while** loop, **break** and **continue** work just the same in the context of a **try** statement's **finally** clause."
371371
]
372372
},
373373
{
@@ -560,7 +560,7 @@
560560
"name": "python",
561561
"nbconvert_exporter": "python",
562562
"pygments_lexer": "ipython3",
563-
"version": "3.6.2"
563+
"version": "3.6.6"
564564
}
565565
},
566566
"nbformat": 4,

0 commit comments

Comments
 (0)