Skip to content

Commit

Permalink
Update While loops.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
jmportilla authored Sep 19, 2016
1 parent a9eb0fd commit 84f8932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion While loops.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"source": [
"# while loops\n",
"\n",
"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",
"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",
"\n",
"The general format of a while loop is:\n",
"\n",
Expand Down

0 comments on commit 84f8932

Please sign in to comment.