Skip to content

Commit

Permalink
maj
Browse files Browse the repository at this point in the history
  • Loading branch information
glassus committed Oct 3, 2023
1 parent 257b7a7 commit d67c30c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/T1_Demarrer_en_Python/1.3_Boucle_while/cours.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ Mais nous pourrions nous en passer : toutes les boucles ```for``` peuvent en fai
```
Ré-écrire ce code en utilisant une boucle ```while```.
=== "Correction"
{#

```python linenums='1'
k = 0
while k < 5:
print("scooby-doo")
k = k + 1
```
#}




Expand Down

0 comments on commit d67c30c

Please sign in to comment.