My Simple Range example 1

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

View File

@ -0,0 +1,21 @@
class MySimpleRange:
def __init__(self, stop):
self.stop = stop
self.count = 0
def __iter__(self):
return self
def __next__(self):
self.count +=1
if self.count > self.stop:
raise StopIteration
return self.count - 1
r = MySimpleRange(10)
a = list(r)
print(a)
for i in MySimpleRange(10):
print(i, end=' ')
print()