We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02fe1cf commit 9defc18Copy full SHA for 9defc18
concepts/loops/introduction.md
@@ -1,7 +1,7 @@
1
# Introduction
2
3
There are two looping constructs.
4
-`while` loops for _indefinite_ (uncounted) iteration and `for` loops for _defininte_, (counted) iteration.
+`while` loops for _indefinite_ (uncounted) iteration and `for` loops for _definite_, (counted) iteration.
5
The keywords `break`, `continue`, and `else` help customize loop behavior.
6
7
`while` loops continue to exectute as long as the loop expression or "test" evaluates to `True`, terminating when it evaluates to `False`.
0 commit comments