For example has been written

This commit is contained in:
Mert Gör 🇹🇷 2024-06-09 19:23:30 +03:00
parent b25e03adfd
commit dd9bfc5c57
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-06-09 Mert Gör <mertgor@masscollabs.xyz> 2024-06-09 Mert Gör <mertgor@masscollabs.xyz>
* python/for_example.py: For örneği yazıldı
* python/while_example.py: while örneği yazıldı * python/while_example.py: while örneği yazıldı
* python/Python.pdf: del Deyimi sayfa 105 * python/Python.pdf: del Deyimi sayfa 105

4
python/for_example.py Normal file
View File

@ -0,0 +1,4 @@
a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for i in a:
print(i, end=' ')