Skip to content

Commit 84f8932

Browse files
authored
Update While loops.ipynb
1 parent a9eb0fd commit 84f8932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

While loops.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"source": [
99
"# while loops\n",
1010
"\n",
11-
"The **while** statement in Python is one of most general ways to perform iteration. A **while** statement will repeatedly execute a single statement or group of statements as long as the condition is true. The reason it is called a 'loop' is because the code statements are looped through over and over again until the condition is met.\n",
11+
"The **while** statement in Python is one of most general ways to perform iteration. A **while** statement will repeatedly execute a single statement or group of statements as long as the condition is true. The reason it is called a 'loop' is because the code statements are looped through over and over again until the condition is no longer met.\n",
1212
"\n",
1313
"The general format of a while loop is:\n",
1414
"\n",

0 commit comments

Comments
 (0)