more range and fore examples

This commit is contained in:
Mert Gör 🇹🇷 2023-05-20 15:19:29 +03:00
parent 8ebe534984
commit 135cf9ae63
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
2 changed files with 6 additions and 0 deletions

3
range.for.4.py Normal file
View File

@ -0,0 +1,3 @@
for i in range(1, 10, 2):
print(i, end=' ')
print()

3
range.for.5.py Normal file
View File

@ -0,0 +1,3 @@
for i in range(10, 0, -2):
print(i, end=' ')
print()