Skip to content

Commit

Permalink
Update using-else-in-loops.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Stojanovic authored Jun 26, 2023
1 parent ea5ea7a commit 8f2f83f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/python-core/looping/using-else-in-loops.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ Fill in the following snippet such that it will print `"Computation Done"` when

```python
x = 0
while x ??? 3:
while ??? < 3:
print("running")
x = x + 1
???:
???("Computation Done")
```

- `<`
- `x`
- else
- print
- `>`
- `X`
- if
- elif

Expand Down

0 comments on commit 8f2f83f

Please sign in to comment.