range and for

This commit is contained in:
Mert Gör 🇹🇷 2023-05-20 15:16:35 +03:00
parent 15ed46213a
commit 8ebe534984
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.2.py Normal file
View file

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

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

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