iterable range example 1

This commit is contained in:
Mert Gör ☭ 2023-09-02 12:45:37 +03:00
parent 3ab40fdd8e
commit 9dd34e4aea
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 10 additions and 0 deletions

View File

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