while example has been written

This commit is contained in:
Mert Gör 2024-06-09 19:06:32 +03:00
parent 1e2632f851
commit 9c1f18e2b7
No known key found for this signature in database
GPG key ID: 03E547D043AB6C8F
2 changed files with 7 additions and 0 deletions

5
python/while_example.py Normal file
View file

@ -0,0 +1,5 @@
i = 0
while i < 10:
print(i)
i += 1