generator done

This commit is contained in:
2025-03-24 16:00:37 +00:00
parent 3a195b2260
commit 9032feca0b
7 changed files with 92 additions and 0 deletions

22
generators/generator.py Normal file
View File

@@ -0,0 +1,22 @@
class MyGen():
current = 0
def __init__(self, first, last):
self.first = first
self.last = last
def __iter__(self):
return self
def __next__(self):
if MyGen.current < self.last:
num = MyGen.current
MyGen.current += 1
return num
raise StopIteration
gen = MyGen(0,100)
for i in gen:
print(i)