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
Signed by: hwpplayer1
GPG key ID: 03E547D043AB6C8F
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2024-06-09 Mert Gör <mertgor@masscollabs.xyz>
* python/while_example.py: while örneği yazıldı
* python/Python.pdf: del Deyimi sayfa 105
* python/Python.pdf: Stringler sayfa 94
* python/Python.pdf: Sözlükler (Dictionaries) sayfa 87

5
python/while_example.py Normal file
View file

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