mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): Python Expense Tracker while condition (#55387)
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@ dashedName: step-25
|
||||
|
||||
# --description--
|
||||
|
||||
A `while` loop is another kind of loop that runs a portion of code until a specified condition is `True`:
|
||||
A `while` loop is another kind of loop that runs a portion of code as long as a specified condition is `True`. The loop terminates when the condition becomes `False`:
|
||||
|
||||
```py
|
||||
while condition:
|
||||
|
||||
Reference in New Issue
Block a user