You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Part 1/Section 02 - A Quick Refresher/06 - The For Loop.ipynb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@
78
78
"cell_type": "markdown",
79
79
"metadata": {},
80
80
"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."
82
82
]
83
83
},
84
84
{
@@ -251,7 +251,7 @@
251
251
"cell_type": "markdown",
252
252
"metadata": {},
253
253
"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:"
255
255
]
256
256
},
257
257
{
@@ -367,7 +367,7 @@
367
367
"cell_type": "markdown",
368
368
"metadata": {},
369
369
"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."
0 commit comments