fix(curriculum): Python Expense Tracker while condition (#55387)

This commit is contained in:
Supravisor
2024-07-02 04:00:10 +12:00
committed by GitHub
parent 1de602814f
commit 3f9498120e
@@ -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: